Class BackendVlvIndexCfgDefn
- java.lang.Object
-
- org.forgerock.opendj.config.AbstractManagedObjectDefinition<C,S>
-
- org.forgerock.opendj.config.ManagedObjectDefinition<BackendVlvIndexCfgClient,BackendVlvIndexCfg>
-
- org.forgerock.opendj.server.config.meta.BackendVlvIndexCfgDefn
-
public final class BackendVlvIndexCfgDefn extends ManagedObjectDefinition<BackendVlvIndexCfgClient,BackendVlvIndexCfg>
An interface for querying the Backend VLV Index managed object definition meta information.Backend VLV Indexes are used to store information about a specific search request that makes it possible to efficiently process them using the VLV control.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classBackendVlvIndexCfgDefn.ScopeDefines the set of permissible values for the "scope" property.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description BackendVlvIndexCfgClientcreateClientConfiguration(ManagedObject<? extends BackendVlvIndexCfgClient> impl)Creates a client configuration view of the provided managed object.BackendVlvIndexCfgcreateServerConfiguration(ServerManagedObject<? extends BackendVlvIndexCfg> impl)Creates a server configuration view of the provided server managed object.DnPropertyDefinitiongetBaseDnPropertyDefinition()Get the "base-dn" property definition.StringPropertyDefinitiongetFilterPropertyDefinition()Get the "filter" property definition.static BackendVlvIndexCfgDefngetInstance()Get the Backend VLV Index configuration definition singleton.StringPropertyDefinitiongetNamePropertyDefinition()Get the "name" property definition.EnumPropertyDefinition<BackendVlvIndexCfgDefn.Scope>getScopePropertyDefinition()Get the "scope" property definition.Class<BackendVlvIndexCfg>getServerConfigurationClass()Gets the server configuration class instance associated with this managed object definition.StringPropertyDefinitiongetSortOrderPropertyDefinition()Get the "sort-order" property definition.-
Methods inherited from class org.forgerock.opendj.config.AbstractManagedObjectDefinition
getAggregationPropertyDefinition, getAggregationPropertyDefinitions, getAllAggregationPropertyDefinitions, getAllChildren, getAllConstraints, getAllPropertyDefinitions, getAllRelationDefinitions, getAllReverseAggregationPropertyDefinitions, getAllReverseRelationDefinitions, getAllTags, getChild, getChildren, getConstraints, getDescription, getDescription, getName, getParent, getPropertyDefinition, getPropertyDefinitions, getRelationDefinition, getRelationDefinitions, getReverseAggregationPropertyDefinitions, getReverseRelationDefinitions, getSynopsis, getSynopsis, getUserFriendlyName, getUserFriendlyName, getUserFriendlyPluralName, getUserFriendlyPluralName, hasChildren, hasOption, hasTag, initialize, isChildOf, isParentOf, isTop, registerConstraint, registerOption, registerPropertyDefinition, registerRelationDefinition, registerTag, resolveManagedObjectDefinition, toString, toString
-
-
-
-
Method Detail
-
getInstance
public static BackendVlvIndexCfgDefn getInstance()
Get the Backend VLV Index configuration definition singleton.- Returns:
- Returns the Backend VLV Index configuration definition singleton.
-
createClientConfiguration
public BackendVlvIndexCfgClient createClientConfiguration(ManagedObject<? extends BackendVlvIndexCfgClient> impl)
Description copied from class:ManagedObjectDefinitionCreates a client configuration view of the provided managed object. Modifications made to the underlying managed object will be reflected in the client configuration view and vice versa.- Specified by:
createClientConfigurationin classManagedObjectDefinition<BackendVlvIndexCfgClient,BackendVlvIndexCfg>- Parameters:
impl- The managed object.- Returns:
- Returns a client configuration view of the provided managed object.
-
createServerConfiguration
public BackendVlvIndexCfg createServerConfiguration(ServerManagedObject<? extends BackendVlvIndexCfg> impl)
Description copied from class:ManagedObjectDefinitionCreates a server configuration view of the provided server managed object.- Specified by:
createServerConfigurationin classManagedObjectDefinition<BackendVlvIndexCfgClient,BackendVlvIndexCfg>- Parameters:
impl- The server managed object.- Returns:
- Returns a server configuration view of the provided server managed object.
-
getServerConfigurationClass
public Class<BackendVlvIndexCfg> getServerConfigurationClass()
Description copied from class:ManagedObjectDefinitionGets the server configuration class instance associated with this managed object definition.- Specified by:
getServerConfigurationClassin classManagedObjectDefinition<BackendVlvIndexCfgClient,BackendVlvIndexCfg>- Returns:
- Returns the server configuration class instance associated with this managed object definition.
-
getBaseDnPropertyDefinition
public DnPropertyDefinition getBaseDnPropertyDefinition()
Get the "base-dn" property definition.Specifies the base DN used in the search query that is being indexed.
- Returns:
- Returns the "base-dn" property definition.
-
getFilterPropertyDefinition
public StringPropertyDefinition getFilterPropertyDefinition()
Get the "filter" property definition.Specifies the LDAP filter used in the query that is being indexed.
- Returns:
- Returns the "filter" property definition.
-
getNamePropertyDefinition
public StringPropertyDefinition getNamePropertyDefinition()
Get the "name" property definition.Specifies a unique name for this VLV index.
- Returns:
- Returns the "name" property definition.
-
getScopePropertyDefinition
public EnumPropertyDefinition<BackendVlvIndexCfgDefn.Scope> getScopePropertyDefinition()
Get the "scope" property definition.Specifies the LDAP scope of the query that is being indexed.
- Returns:
- Returns the "scope" property definition.
-
getSortOrderPropertyDefinition
public StringPropertyDefinition getSortOrderPropertyDefinition()
Get the "sort-order" property definition.Specifies the names of the attributes that are used to sort the entries for the query being indexed.
Multiple attributes can be used to determine the sort order by listing the attribute names from highest to lowest precedence. Optionally, + or - can be prefixed to the attribute name to sort the attribute in ascending order or descending order respectively.
- Returns:
- Returns the "sort-order" property definition.
-
-