Uses of Class
org.glassfish.jersey.server.model.RuntimeResource
-
Packages that use RuntimeResource Package Description org.glassfish.jersey.server Jersey server-side classes.org.glassfish.jersey.server.internal.routing Jersey server-side internal resource routing classes.org.glassfish.jersey.server.model Jersey server-side application & resource modeling classes.org.glassfish.jersey.server.model.internal Jersey server-side internal model related and routing helper classes. -
-
Uses of RuntimeResource in org.glassfish.jersey.server
Methods in org.glassfish.jersey.server that return types with arguments of type RuntimeResource Modifier and Type Method Description java.util.List<RuntimeResource>
ExtendedUriInfo. getMatchedRuntimeResources()
Return all matchedruntime resources
including runtime resources based on child resources. -
Uses of RuntimeResource in org.glassfish.jersey.server.internal.routing
Fields in org.glassfish.jersey.server.internal.routing declared as RuntimeResource Modifier and Type Field Description private RuntimeResource
PushMatchedRuntimeResourceRouter. resource
Fields in org.glassfish.jersey.server.internal.routing with type parameters of type RuntimeResource Modifier and Type Field Description private java.util.LinkedList<RuntimeResource>
UriRoutingContext. matchedRuntimeResources
Methods in org.glassfish.jersey.server.internal.routing that return types with arguments of type RuntimeResource Modifier and Type Method Description java.util.List<RuntimeResource>
UriRoutingContext. getMatchedRuntimeResources()
Methods in org.glassfish.jersey.server.internal.routing with parameters of type RuntimeResource Modifier and Type Method Description private java.util.List<MethodRouting>
RuntimeModelBuilder. createResourceMethodRouters(RuntimeResource runtimeResource, boolean subResourceMode)
private Resource
RuntimeModelBuilder. getLocatorResource(RuntimeResource resource)
private PushMatchedTemplateRouter
RuntimeModelBuilder. getTemplateRouterForChildLocator(boolean subResourceMode, RuntimeResource child)
void
RoutingContext. pushMatchedRuntimeResource(RuntimeResource runtimeResource)
Push a matchedruntime resource
that was visited during matching phase.void
UriRoutingContext. pushMatchedRuntimeResource(RuntimeResource runtimeResource)
Constructors in org.glassfish.jersey.server.internal.routing with parameters of type RuntimeResource Constructor Description PushMatchedRuntimeResourceRouter(RuntimeResource resource)
Create a new instance of push matched resource router. -
Uses of RuntimeResource in org.glassfish.jersey.server.model
Fields in org.glassfish.jersey.server.model declared as RuntimeResource Modifier and Type Field Description private RuntimeResource
RuntimeResource. parent
Fields in org.glassfish.jersey.server.model with type parameters of type RuntimeResource Modifier and Type Field Description private java.util.List<RuntimeResource>
RuntimeResource. childRuntimeResources
static java.util.Comparator<RuntimeResource>
RuntimeResource. COMPARATOR
Comparator of RuntimeResources based on rules respecting resource matching algorithm.private java.util.List<RuntimeResource>
RuntimeResourceModel. runtimeResources
Methods in org.glassfish.jersey.server.model that return RuntimeResource Modifier and Type Method Description RuntimeResource
RuntimeResource.Builder. build(RuntimeResource parent)
Build new RuntimeResource from this builder.RuntimeResource
RuntimeResource. getParent()
Get parent of this runtime resource.Methods in org.glassfish.jersey.server.model that return types with arguments of type RuntimeResource Modifier and Type Method Description java.util.List<RuntimeResource>
RuntimeResource. getChildRuntimeResources()
Get child runtime resources of this resource.java.util.List<RuntimeResource>
RuntimeResourceModel. getRuntimeResources()
Get list of runtime resources from this model (excluding child resources which are accessible in the returned resources).Methods in org.glassfish.jersey.server.model with parameters of type RuntimeResource Modifier and Type Method Description RuntimeResource
RuntimeResource.Builder. build(RuntimeResource parent)
Build new RuntimeResource from this builder.private void
RuntimeResourceModelValidator. checkIntersectingMediaTypes(RuntimeResource runtimeResource, java.lang.String httpMethod, ResourceMethod m1, ResourceMethod m2)
private void
RuntimeResourceModelValidator. checkMethods(RuntimeResource resource)
void
AbstractResourceModelVisitor. visitRuntimeResource(RuntimeResource runtimeResource)
void
ResourceModelVisitor. visitRuntimeResource(RuntimeResource runtimeResource)
Process a runtime resource model.void
RuntimeResourceModelValidator. visitRuntimeResource(RuntimeResource runtimeResource)
Constructors in org.glassfish.jersey.server.model with parameters of type RuntimeResource Constructor Description RuntimeResource(java.util.List<Resource> resources, java.util.List<RuntimeResource.Builder> childRuntimeResourceBuilders, RuntimeResource parent, java.lang.String regex)
-
Uses of RuntimeResource in org.glassfish.jersey.server.model.internal
Methods in org.glassfish.jersey.server.model.internal with parameters of type RuntimeResource Modifier and Type Method Description static void
ModelProcessorUtil. enhanceResource(RuntimeResource resource, ResourceModel.Builder enhancedModelBuilder, java.util.List<ModelProcessorUtil.Method> methods, boolean extended)
Enhance the runtime resource referenced byresource
parameter with a list of additional methods.static java.util.Set<java.lang.String>
ModelProcessorUtil. getAllowedMethods(RuntimeResource resource)
Return allowed methods for the givenresource
.
-