- java.lang.Object
-
- org.eclipse.persistence.jpa.rs.features.FeatureSetPreV2
-
- All Implemented Interfaces:
FeatureSet
public class FeatureSetPreV2 extends Object implements FeatureSet
The legacy initial feature set. Used if version number is not present or equal to 1.- Author:
- gonural, Dmitry Kornilov
- Since:
- EclipseLink 2.6.0.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.eclipse.persistence.jpa.rs.features.FeatureSet
FeatureSet.Feature
-
-
Constructor Summary
Constructors Constructor Description FeatureSetPreV2()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description MetadataSourcegetDynamicMetadataSource(Session session, String packageName)Builds a dynamicMetadataSourcefor given package.List<MetadataSource>getMetadataSources()Gets a list ofMetadataSourcerelated to this version.FeatureResponseBuildergetResponseBuilder(FeatureSet.Feature feature)Returns an instance ofFeatureResponseBuilderfor given feature.org.eclipse.persistence.internal.jaxb.SessionEventListenergetSessionEventListener(Session session)ReturnsSessionEventListenerrelated to this version.booleanisSupported(FeatureSet.Feature feature)Returns true if given feature is supported.
-
-
-
Method Detail
-
isSupported
public boolean isSupported(FeatureSet.Feature feature)
Description copied from interface:FeatureSetReturns true if given feature is supported.- Specified by:
isSupportedin interfaceFeatureSet- Parameters:
feature- Feature to check.- Returns:
- true if feature is supported, false if not supported.
-
getResponseBuilder
public FeatureResponseBuilder getResponseBuilder(FeatureSet.Feature feature)
Description copied from interface:FeatureSetReturns an instance ofFeatureResponseBuilderfor given feature.- Specified by:
getResponseBuilderin interfaceFeatureSet- Parameters:
feature- feature to get response builder for.- Returns:
FeatureResponseBuilder
-
getMetadataSources
public List<MetadataSource> getMetadataSources()
Description copied from interface:FeatureSetGets a list ofMetadataSourcerelated to this version. Called on JAXB context initialization.- Specified by:
getMetadataSourcesin interfaceFeatureSet- Returns:
- a list of
MetadataSource
-
getDynamicMetadataSource
public MetadataSource getDynamicMetadataSource(Session session, String packageName)
Description copied from interface:FeatureSetBuilds a dynamicMetadataSourcefor given package. Called on JAXB context initialization.- Specified by:
getDynamicMetadataSourcein interfaceFeatureSet- Parameters:
session- the sessionpackageName- package name to build meta data for.- Returns:
MetadataSource
-
getSessionEventListener
public org.eclipse.persistence.internal.jaxb.SessionEventListener getSessionEventListener(Session session)
Description copied from interface:FeatureSetReturnsSessionEventListenerrelated to this version.- Specified by:
getSessionEventListenerin interfaceFeatureSet- Parameters:
session- the session- Returns:
SessionEventListener
-
-