Uses of Class
com.composum.sling.core.servlet.ServletOperationSet.Method
-
Packages that use ServletOperationSet.Method Package Description com.composum.sling.core.servlet -
-
Uses of ServletOperationSet.Method in com.composum.sling.core.servlet
Fields in com.composum.sling.core.servlet with type parameters of type ServletOperationSet.Method Modifier and Type Field Description protected Map<ServletOperationSet.Method,Map<E,O>>
ServletOperationSet. operationDefaults
the default operation keys for each provided extensionprotected Map<ServletOperationSet.Method,Map<E,Map<O,ServletOperation>>>
ServletOperationSet. operationMap
the operations map set up during servlet initializationMethods in com.composum.sling.core.servlet that return ServletOperationSet.Method Modifier and Type Method Description static ServletOperationSet.Method
ServletOperationSet.Method. valueOf(String name)
Returns the enum constant of this type with the specified name.static ServletOperationSet.Method[]
ServletOperationSet.Method. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in com.composum.sling.core.servlet with parameters of type ServletOperationSet.Method Modifier and Type Method Description O
ServletOperationSet. getDefaultOperation(ServletOperationSet.Method method, E extension)
ServletOperation
ServletOperationSet. getOperation(org.apache.sling.api.SlingHttpServletRequest request, ServletOperationSet.Method method)
Retrieves the servlet operation requested for the used HTTP method.void
ServletOperationSet. sendInvalidOperation(org.apache.sling.api.SlingHttpServletRequest request, org.apache.sling.api.SlingHttpServletResponse response, ServletOperationSet.Method method)
void
ServletOperationSet. setDefaultOperation(ServletOperationSet.Method method, E extension, O operation)
void
ServletOperationSet. setOperation(ServletOperationSet.Method method, E extension, O operation, ServletOperation implementation)
void
ServletOperationSet. setOperation(ServletOperationSet.Method method, E extension, O operation, ServletOperation implementation, boolean isDefault)
-