org.glassfish.jersey.server.model
Class ResourceConstructor

java.lang.Object
  extended by org.glassfish.jersey.server.model.ResourceConstructor
All Implemented Interfaces:
Parameterized, ResourceModelComponent

public class ResourceConstructor
extends Object
implements Parameterized, ResourceModelComponent

Abstraction for a resource class constructor


Constructor Summary
ResourceConstructor(Constructor constructor)
          Creates a new instance of ResourceConstructor
 
Method Summary
 void accept(ResourceModelVisitor visitor)
          A component should call the visitor back with an appropriate visitor interface method to give it a chance to process.
 List<ResourceModelComponent> getComponents()
          Should return all existing resource model sub-components.
 Constructor getCtor()
           
 List<Parameter> getParameters()
          Provides access to all parameters associated with given Parameterized instance.
 boolean hasEntity()
          Provides information on presence of an entity parameter.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ResourceConstructor

public ResourceConstructor(Constructor constructor)
Creates a new instance of ResourceConstructor

Method Detail

getParameters

public List<Parameter> getParameters()
Description copied from interface: Parameterized
Provides access to all parameters associated with given Parameterized instance.

Specified by:
getParameters in interface Parameterized
Returns:
list of actual parameters

hasEntity

public boolean hasEntity()
Description copied from interface: Parameterized
Provides information on presence of an entity parameter.

Specified by:
hasEntity in interface Parameterized
Returns:
true if entity parameter is present, false otherwise

getCtor

public Constructor getCtor()

accept

public void accept(ResourceModelVisitor visitor)
Description copied from interface: ResourceModelComponent
A component should call the visitor back with an appropriate visitor interface method to give it a chance to process.

Specified by:
accept in interface ResourceModelComponent
Parameters:
visitor - resource model visitor.

getComponents

public List<ResourceModelComponent> getComponents()
Description copied from interface: ResourceModelComponent
Should return all existing resource model sub-components.

Specified by:
getComponents in interface ResourceModelComponent
Returns:
list of all sub-components


Copyright © 2007-2012 Oracle Corporation. All Rights Reserved. Use is subject to license terms.