Package org.glassfish.jersey.model
Class ContractProvider
- java.lang.Object
-
- org.glassfish.jersey.model.ContractProvider
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classContractProvider.BuilderContract provider model builder.
-
Field Summary
Fields Modifier and Type Field Description static intNO_PRIORITY"No priority" constant.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ContractProvider.Builderbuilder(Class<?> implementationClass)Create new contract provider model builder.static ContractProvider.Builderbuilder(ContractProvider original)Create new contract provider model builder from an existing one.Map<Class<?>,Integer>getContractMap()Get the map of contracts and their priorities.Set<Class<?>>getContracts()Get provided contracts recognized by Jersey.Class<?>getImplementationClass()Get the implementation class which the contracts belong to.Set<Class<? extends Annotation>>getNameBindings()Get the collection of name bindings attached to this component.intgetPriority(Class<?> contract)Get the provider contract priority, if set, default component provider, if not set.Class<? extends Annotation>getScope()Get model component scope.booleanisNameBound()Check if the component is bound or not.
-
-
-
Field Detail
-
NO_PRIORITY
public static final int NO_PRIORITY
"No priority" constant.- See Also:
- Constant Field Values
-
-
Method Detail
-
builder
public static ContractProvider.Builder builder(Class<?> implementationClass)
Create new contract provider model builder.- Parameters:
implementationClass- class which the contracts belong to.- Returns:
- new contract provider builder.
-
builder
public static ContractProvider.Builder builder(ContractProvider original)
Create new contract provider model builder from an existing one.- Parameters:
original- existing contract provider model.- Returns:
- new contract provider builder.
-
getScope
public Class<? extends Annotation> getScope()
Description copied from interface:ScopedGet model component scope.
-
getImplementationClass
public Class<?> getImplementationClass()
Get the implementation class which the contracts belong to.- Returns:
- implementation class.
-
getContracts
public Set<Class<?>> getContracts()
Get provided contracts recognized by Jersey.- Returns:
- provided contracts.
- See Also:
Contract
-
getContractMap
public Map<Class<?>,Integer> getContractMap()
Get the map of contracts and their priorities.- Returns:
- contracts and their priorities.
-
isNameBound
public boolean isNameBound()
Description copied from interface:NameBoundCheck if the component is bound or not.- Specified by:
isNameBoundin interfaceNameBound- Returns:
trueif the component is bound,falseotherwise.
-
getPriority
public int getPriority(Class<?> contract)
Get the provider contract priority, if set, default component provider, if not set.- Parameters:
contract- provider contract.- Returns:
- provider priority.
- See Also:
Priority
-
getNameBindings
public Set<Class<? extends Annotation>> getNameBindings()
Description copied from interface:NameBoundGet the collection of name bindings attached to this component.- Specified by:
getNameBindingsin interfaceNameBound- Returns:
- collection of name binding annotation types.
-
-