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.StringgetApplicationPath()Application path (includes context path).java.lang.StringgetContextPath()Obtains the possible context path.java.lang.StringgetDocumentation()Obtains the documentation describing theHttpInput.HttpMethodgetHttpMethod()HttpObjectParserFactory[]getHttpObjectParserFactories()Obtains theHttpObjectParserFactoryinstances.HttpObjectResponderFactory[]getHttpObjectResponderFactories()Obtains theHttpObjectResponderFactoryinstances.java.lang.StringgetRoutePath()Obtains theHttpInputpath minus the context path.booleanisSecure()Indicates if secure.-
Methods inherited from interface net.officefloor.compile.spi.office.ExecutionExplorerContext
getInitialManagedFunction, getManagedFunction
-
-
-
-
Method Detail
-
isSecure
boolean isSecure()
Indicates if secure.- Returns:
trueif 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 theHttpInputpath minus the context path.- Returns:
HttpInputpath minus the context path.
-
getApplicationPath
java.lang.String getApplicationPath()
Application path (includes context path).- Returns:
- Application path.
-
getHttpObjectParserFactories
HttpObjectParserFactory[] getHttpObjectParserFactories()
Obtains theHttpObjectParserFactoryinstances.- Returns:
HttpObjectParserFactoryinstances.
-
getHttpObjectResponderFactories
HttpObjectResponderFactory[] getHttpObjectResponderFactories()
Obtains theHttpObjectResponderFactoryinstances.- Returns:
HttpObjectResponderFactoryinstances.
-
-