Interface ResourceConfig
-
- All Known Implementing Classes:
AbstractResourceConfig,CollectionResourceConfig,SingleResourceConfig
@Deprecated public interface ResourceConfigDeprecated.since 1818Various REST-Resource information.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description java.lang.StringgetClassName()Deprecated.Returns the class name of the generated resource.DtoConfiggetDTOConfig()Deprecated.Returns theDtoConfigof the entity which this resource is used for.java.lang.StringgetPackageName()Deprecated.Returns the package name for this resource.java.lang.StringgetSimpleClassName()Deprecated.Returns the simple class name of the generated resource.java.util.Collection<ResourceConfig>getSubResources()Deprecated.Returns all available subresources.booleanisDeleteSupport()Deprecated.booleanisGetSupport()Deprecated.booleanisPostSupport()Deprecated.booleanisPutSupport()Deprecated.
-
-
-
Method Detail
-
getDTOConfig
DtoConfig getDTOConfig()
Deprecated.Returns theDtoConfigof the entity which this resource is used for.- Returns:
DtoConfig
-
getClassName
java.lang.String getClassName()
Deprecated.Returns the class name of the generated resource.
-
getSimpleClassName
java.lang.String getSimpleClassName()
Deprecated.Returns the simple class name of the generated resource.- Returns:
- simple class literal
-
getPackageName
java.lang.String getPackageName()
Deprecated.Returns the package name for this resource.- Returns:
- package name of resource
-
isPostSupport
boolean isPostSupport()
Deprecated.- Returns:
- true when POST is enabled.
-
isGetSupport
boolean isGetSupport()
Deprecated.- Returns:
- true when GET is enabled.
-
isPutSupport
boolean isPutSupport()
Deprecated.- Returns:
- true when PUT is enabled.
-
isDeleteSupport
boolean isDeleteSupport()
Deprecated.- Returns:
- true when DELETE is enabled.
-
getSubResources
java.util.Collection<ResourceConfig> getSubResources()
Deprecated.Returns all available subresources.- Returns:
- Collection of
ResourceConfig
-
-