Package net.officefloor.web.build
Interface HttpInputExplorerContext
-
- All Superinterfaces:
ExecutionExplorerContext
public interface HttpInputExplorerContext extends ExecutionExplorerContext
Context for theHttpInputExplorer
.- Author:
- Daniel Sagenschneider
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getApplicationPath()
Application path (includes context path).java.lang.String
getContextPath()
Obtains the possible context path.java.lang.String
getDocumentation()
Obtains the documentation describing theHttpInput
.HttpMethod
getHttpMethod()
HttpObjectParserFactory[]
getHttpObjectParserFactories()
Obtains theHttpObjectParserFactory
instances.HttpObjectResponderFactory[]
getHttpObjectResponderFactories()
Obtains theHttpObjectResponderFactory
instances.java.lang.String
getRoutePath()
Obtains theHttpInput
path minus the context path.boolean
isSecure()
Indicates if secure.-
Methods inherited from interface net.officefloor.compile.spi.office.ExecutionExplorerContext
getInitialManagedFunction, getManagedFunction
-
-
-
-
Method Detail
-
isSecure
boolean isSecure()
Indicates if secure.- Returns:
true
if secure.
-
getHttpMethod
HttpMethod getHttpMethod()
- Returns:
HttpMethod
.
-
getContextPath
java.lang.String getContextPath()
Obtains the possible context path.- Returns:
- Context path. May be
null
.
-
getRoutePath
java.lang.String getRoutePath()
Obtains theHttpInput
path minus the context path.- Returns:
HttpInput
path minus the context path.
-
getApplicationPath
java.lang.String getApplicationPath()
Application path (includes context path).- Returns:
- Application path.
-
getHttpObjectParserFactories
HttpObjectParserFactory[] getHttpObjectParserFactories()
Obtains theHttpObjectParserFactory
instances.- Returns:
HttpObjectParserFactory
instances.
-
getHttpObjectResponderFactories
HttpObjectResponderFactory[] getHttpObjectResponderFactories()
Obtains theHttpObjectResponderFactory
instances.- Returns:
HttpObjectResponderFactory
instances.
-
-