|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Uses of Index in org.apache.directory.server.core.partition.avl |
---|
Classes in org.apache.directory.server.core.partition.avl that implement Index | |
---|---|
class |
AvlIndex<K,O>
An Index backed by an AVL Tree. |
Methods in org.apache.directory.server.core.partition.avl that return Index | |
---|---|
Index<java.lang.String,E,java.lang.Long> |
AvlStore.getAliasIndex()
|
Index<java.lang.String,E,java.lang.Long> |
AvlStore.getEntryCsnIndex()
|
Index<java.lang.String,E,java.lang.Long> |
AvlStore.getEntryUuidIndex()
|
Index<?,E,java.lang.Long> |
AvlStore.getIndex(java.lang.String id)
Get the user or system index associated with the given name |
Index<java.lang.String,E,java.lang.Long> |
AvlStore.getNdnIndex()
|
Index<java.lang.String,E,java.lang.Long> |
AvlStore.getObjectClassIndex()
|
Index<java.lang.Long,E,java.lang.Long> |
AvlStore.getOneAliasIndex()
|
Index<java.lang.Long,E,java.lang.Long> |
AvlStore.getOneLevelIndex()
|
Index<java.lang.String,E,java.lang.Long> |
AvlStore.getPresenceIndex()
|
Index<java.lang.Long,E,java.lang.Long> |
AvlStore.getSubAliasIndex()
|
Index<java.lang.Long,E,java.lang.Long> |
AvlStore.getSubLevelIndex()
|
Index<?,E,java.lang.Long> |
AvlStore.getSystemIndex(java.lang.String id)
Get the system index associated with the given name |
Index<java.lang.String,E,java.lang.Long> |
AvlStore.getUpdnIndex()
|
Index<? extends java.lang.Object,E,java.lang.Long> |
AvlStore.getUserIndex(java.lang.String id)
Get the user index associated with the given name |
Methods in org.apache.directory.server.core.partition.avl that return types with arguments of type Index | |
---|---|
java.util.Set<Index<? extends java.lang.Object,E,java.lang.Long>> |
AvlStore.getUserIndices()
|
Methods in org.apache.directory.server.core.partition.avl with parameters of type Index | |
---|---|
void |
AvlStore.addIndex(Index<? extends java.lang.Object,E,java.lang.Long> index)
Adds a user index to the list of index for this store |
void |
AvlStore.setAliasIndex(Index<java.lang.String,E,java.lang.Long> index)
Set the Alias index |
void |
AvlStore.setEntryCsnIndex(Index<java.lang.String,E,java.lang.Long> index)
|
void |
AvlStore.setEntryUuidIndex(Index<java.lang.String,E,java.lang.Long> index)
|
void |
AvlStore.setNdnIndex(Index<java.lang.String,E,java.lang.Long> index)
Set the NDN index |
void |
AvlStore.setObjectClassIndex(Index<java.lang.String,E,java.lang.Long> index)
|
void |
AvlStore.setOneAliasIndex(Index<java.lang.Long,E,java.lang.Long> index)
Set the OneAlias index |
void |
AvlStore.setOneLevelIndex(Index<java.lang.Long,E,java.lang.Long> index)
Set the OneLevel index |
void |
AvlStore.setPresenceIndex(Index<java.lang.String,E,java.lang.Long> index)
Set the Presence index |
void |
AvlStore.setSubAliasIndex(Index<java.lang.Long,E,java.lang.Long> index)
Set the SubAlias index |
void |
AvlStore.setSubLevelIndex(Index<java.lang.Long,E,java.lang.Long> index)
Set the SubLevel index |
void |
AvlStore.setUpdnIndex(Index<java.lang.String,E,java.lang.Long> index)
Set the UpDn index |
Method parameters in org.apache.directory.server.core.partition.avl with type arguments of type Index | |
---|---|
void |
AvlStore.setUserIndices(java.util.Set<Index<? extends java.lang.Object,E,java.lang.Long>> userIndices)
Stores the list of user index |
Uses of Index in org.apache.directory.server.core.partition.impl.btree |
---|
Methods in org.apache.directory.server.core.partition.impl.btree that return Index | |
---|---|
abstract Index<java.lang.String,org.apache.directory.shared.ldap.entry.ServerEntry,ID> |
BTreePartition.getAliasIndex()
Gets the system index defined on the ALIAS_ATTRIBUTE which for LDAP would be the aliasedObjectName and for X.500 would be aliasedEntryName. |
abstract Index<java.lang.String,org.apache.directory.shared.ldap.entry.ServerEntry,ID> |
BTreePartition.getNdnIndex()
Gets the Index mapping the normalized distinguished names of entries as Strings to the BigInteger primary keys of entries. |
abstract Index<ID,org.apache.directory.shared.ldap.entry.ServerEntry,ID> |
BTreePartition.getOneAliasIndex()
Gets the alias index mapping parent entries with scope expanding aliases children one level below them; this system index is used to dereference aliases on one/single level scoped searches. |
abstract Index<ID,org.apache.directory.shared.ldap.entry.ServerEntry,ID> |
BTreePartition.getOneLevelIndex()
Gets the Index mapping the primary keys of parents to the primary keys of their children. |
abstract Index<java.lang.String,org.apache.directory.shared.ldap.entry.ServerEntry,ID> |
BTreePartition.getPresenceIndex()
|
abstract Index<ID,org.apache.directory.shared.ldap.entry.ServerEntry,ID> |
BTreePartition.getSubAliasIndex()
Gets the alias index mapping relative entries with scope expanding alias descendents; this system index is used to dereference aliases on subtree scoped searches. |
abstract Index<ID,org.apache.directory.shared.ldap.entry.ServerEntry,ID> |
BTreePartition.getSubLevelIndex()
Gets the Index mapping the primary keys of ancestors to the primary keys of their descendants. |
abstract Index<? extends java.lang.Object,org.apache.directory.shared.ldap.entry.ServerEntry,ID> |
BTreePartition.getSystemIndex(java.lang.String attribute)
|
abstract Index<java.lang.String,org.apache.directory.shared.ldap.entry.ServerEntry,ID> |
BTreePartition.getUpdnIndex()
Gets the Index mapping user provided distinguished names of entries as Strings to the BigInteger primary keys of entries. |
abstract Index<? extends java.lang.Object,org.apache.directory.shared.ldap.entry.ServerEntry,ID> |
BTreePartition.getUserIndex(java.lang.String attribute)
|
Methods in org.apache.directory.server.core.partition.impl.btree that return types with arguments of type Index | |
---|---|
java.util.Set<Index<? extends java.lang.Object,org.apache.directory.shared.ldap.entry.ServerEntry,ID>> |
BTreePartition.getIndexedAttributes()
|
Methods in org.apache.directory.server.core.partition.impl.btree with parameters of type Index | |
---|---|
void |
BTreePartition.addIndexedAttributes(Index<? extends java.lang.Object,org.apache.directory.shared.ldap.entry.ServerEntry,ID>... indexes)
|
abstract void |
BTreePartition.addIndexOn(Index<? extends java.lang.Object,org.apache.directory.shared.ldap.entry.ServerEntry,ID> index)
|
abstract void |
BTreePartition.setAliasIndexOn(Index<java.lang.String,org.apache.directory.shared.ldap.entry.ServerEntry,ID> index)
Sets the system index defined on the ALIAS_ATTRIBUTE which for LDAP would be the aliasedObjectName and for X.500 would be aliasedEntryName. |
abstract void |
BTreePartition.setNdnIndexOn(Index<java.lang.String,org.apache.directory.shared.ldap.entry.ServerEntry,ID> index)
Sets the normalized distinguished name Index. |
abstract void |
BTreePartition.setOneAliasIndexOn(Index<ID,org.apache.directory.shared.ldap.entry.ServerEntry,ID> index)
Sets the alias index mapping parent entries with scope expanding aliases children one level below them; this system index is used to dereference aliases on one/single level scoped searches. |
abstract void |
BTreePartition.setOneLevelIndexOn(Index<ID,org.apache.directory.shared.ldap.entry.ServerEntry,ID> index)
Sets the one level Index. |
abstract void |
BTreePartition.setPresenceIndexOn(Index<java.lang.String,org.apache.directory.shared.ldap.entry.ServerEntry,ID> index)
Sets the attribute existence Index. |
abstract void |
BTreePartition.setSubAliasIndexOn(Index<ID,org.apache.directory.shared.ldap.entry.ServerEntry,ID> index)
Sets the alias index mapping relative entries with scope expanding alias descendents; this system index is used to dereference aliases on subtree scoped searches. |
abstract void |
BTreePartition.setUpdnIndexOn(Index<java.lang.String,org.apache.directory.shared.ldap.entry.ServerEntry,ID> index)
Sets the user provided distinguished name Index. |
Method parameters in org.apache.directory.server.core.partition.impl.btree with type arguments of type Index | |
---|---|
void |
BTreePartition.setIndexedAttributes(java.util.Set<Index<? extends java.lang.Object,org.apache.directory.shared.ldap.entry.ServerEntry,ID>> indexedAttributes)
|
Uses of Index in org.apache.directory.server.core.partition.impl.btree.gui |
---|
Methods in org.apache.directory.server.core.partition.impl.btree.gui with parameters of type Index | |
---|---|
static void |
IndexDialog.show(Index index)
|
Constructors in org.apache.directory.server.core.partition.impl.btree.gui with parameters of type Index | |
---|---|
IndexDialog(java.awt.Frame parent,
boolean modal,
Index<K,O,ID> index)
|
|
IndexDialog(Index<K,O,ID> index)
|
Uses of Index in org.apache.directory.server.core.partition.impl.btree.jdbm |
---|
Classes in org.apache.directory.server.core.partition.impl.btree.jdbm that implement Index | |
---|---|
class |
JdbmIndex<K,O>
A Jdbm based index implementation. |
Methods in org.apache.directory.server.core.partition.impl.btree.jdbm that return Index | |
---|---|
Index<java.lang.String,E,java.lang.Long> |
JdbmStore.getAliasIndex()
|
Index<java.lang.String,org.apache.directory.shared.ldap.entry.ServerEntry,java.lang.Long> |
JdbmPartition.getEntryCsnIndex()
|
Index<java.lang.String,E,java.lang.Long> |
JdbmStore.getEntryCsnIndex()
|
Index<java.lang.String,org.apache.directory.shared.ldap.entry.ServerEntry,java.lang.Long> |
JdbmPartition.getEntryUuidIndex()
|
Index<java.lang.String,E,java.lang.Long> |
JdbmStore.getEntryUuidIndex()
|
Index<?,E,java.lang.Long> |
JdbmStore.getIndex(java.lang.String id)
|
Index<java.lang.String,E,java.lang.Long> |
JdbmStore.getNdnIndex()
|
Index<java.lang.String,org.apache.directory.shared.ldap.entry.ServerEntry,java.lang.Long> |
JdbmPartition.getObjectClassIndex()
|
Index<java.lang.String,E,java.lang.Long> |
JdbmStore.getObjectClassIndex()
|
Index<java.lang.Long,E,java.lang.Long> |
JdbmStore.getOneAliasIndex()
|
Index<java.lang.Long,E,java.lang.Long> |
JdbmStore.getOneLevelIndex()
|
Index<java.lang.String,E,java.lang.Long> |
JdbmStore.getPresenceIndex()
|
Index<java.lang.Long,E,java.lang.Long> |
JdbmStore.getSubAliasIndex()
|
Index<java.lang.Long,E,java.lang.Long> |
JdbmStore.getSubLevelIndex()
|
Index<?,E,java.lang.Long> |
JdbmStore.getSystemIndex(java.lang.String id)
|
Index<java.lang.String,E,java.lang.Long> |
JdbmStore.getUpdnIndex()
|
Index<?,E,java.lang.Long> |
JdbmStore.getUserIndex(java.lang.String id)
|
Methods in org.apache.directory.server.core.partition.impl.btree.jdbm that return types with arguments of type Index | |
---|---|
java.util.Set<Index<?,E,java.lang.Long>> |
JdbmStore.getUserIndices()
|
Methods in org.apache.directory.server.core.partition.impl.btree.jdbm with parameters of type Index | |
---|---|
void |
JdbmStore.addIndex(Index<?,E,java.lang.Long> index)
|
void |
JdbmStore.setAliasIndex(Index<java.lang.String,E,java.lang.Long> index)
Set the Alias index |
void |
JdbmStore.setEntryCsnIndex(Index<java.lang.String,E,java.lang.Long> index)
Set the EntryCSN index |
void |
JdbmStore.setEntryUuidIndex(Index<java.lang.String,E,java.lang.Long> index)
Set the EntryUUID index |
void |
JdbmStore.setNdnIndex(Index<java.lang.String,E,java.lang.Long> index)
Set the NDN index |
void |
JdbmStore.setObjectClassIndex(Index<java.lang.String,E,java.lang.Long> index)
Set the ObjectClass index |
void |
JdbmStore.setOneAliasIndex(Index<java.lang.Long,E,java.lang.Long> index)
Set the OneAlias index |
void |
JdbmStore.setOneLevelIndex(Index<java.lang.Long,E,java.lang.Long> index)
Set the OneLevel index |
void |
JdbmStore.setPresenceIndex(Index<java.lang.String,E,java.lang.Long> index)
Set the Presence index |
void |
JdbmStore.setSubAliasIndex(Index<java.lang.Long,E,java.lang.Long> index)
Set the SubAlias index |
void |
JdbmStore.setSubLevelIndex(Index<java.lang.Long,E,java.lang.Long> index)
Set the SubLevel index |
void |
JdbmStore.setUpdnIndex(Index<java.lang.String,E,java.lang.Long> index)
Set the UpDn index |
Method parameters in org.apache.directory.server.core.partition.impl.btree.jdbm with type arguments of type Index | |
---|---|
void |
JdbmStore.setUserIndices(java.util.Set<Index<?,E,java.lang.Long>> userIndices)
|
Uses of Index in org.apache.directory.server.core.partition.ldif |
---|
Methods in org.apache.directory.server.core.partition.ldif that return Index | |
---|---|
Index<java.lang.String,org.apache.directory.shared.ldap.entry.ServerEntry,java.lang.Long> |
LdifPartition.getAliasIndex()
|
Index<java.lang.String,E,java.lang.Long> |
LdifStore.getAliasIndex()
|
Index<java.lang.String,E,java.lang.Long> |
LdifStore.getEntryCsnIndex()
|
Index<java.lang.String,E,java.lang.Long> |
LdifStore.getEntryUuidIndex()
|
Index<?,E,java.lang.Long> |
LdifStore.getIndex(java.lang.String id)
|
Index<java.lang.String,org.apache.directory.shared.ldap.entry.ServerEntry,java.lang.Long> |
LdifPartition.getNdnIndex()
|
Index<java.lang.String,E,java.lang.Long> |
LdifStore.getNdnIndex()
|
Index<java.lang.String,E,java.lang.Long> |
LdifStore.getObjectClassIndex()
|
Index<java.lang.Long,org.apache.directory.shared.ldap.entry.ServerEntry,java.lang.Long> |
LdifPartition.getOneAliasIndex()
|
Index<java.lang.Long,E,java.lang.Long> |
LdifStore.getOneAliasIndex()
|
Index<java.lang.Long,org.apache.directory.shared.ldap.entry.ServerEntry,java.lang.Long> |
LdifPartition.getOneLevelIndex()
|
Index<java.lang.Long,E,java.lang.Long> |
LdifStore.getOneLevelIndex()
|
Index<java.lang.String,org.apache.directory.shared.ldap.entry.ServerEntry,java.lang.Long> |
LdifPartition.getPresenceIndex()
|
Index<java.lang.String,E,java.lang.Long> |
LdifStore.getPresenceIndex()
|
Index<java.lang.Long,org.apache.directory.shared.ldap.entry.ServerEntry,java.lang.Long> |
LdifPartition.getSubAliasIndex()
|
Index<java.lang.Long,E,java.lang.Long> |
LdifStore.getSubAliasIndex()
|
Index<java.lang.Long,org.apache.directory.shared.ldap.entry.ServerEntry,java.lang.Long> |
LdifPartition.getSubLevelIndex()
|
Index<java.lang.Long,E,java.lang.Long> |
LdifStore.getSubLevelIndex()
|
Index<?,org.apache.directory.shared.ldap.entry.ServerEntry,java.lang.Long> |
LdifPartition.getSystemIndex(java.lang.String id)
|
Index<?,E,java.lang.Long> |
LdifStore.getSystemIndex(java.lang.String id)
|
Index<java.lang.String,org.apache.directory.shared.ldap.entry.ServerEntry,java.lang.Long> |
LdifPartition.getUpdnIndex()
|
Index<java.lang.String,E,java.lang.Long> |
LdifStore.getUpdnIndex()
|
Index<? extends java.lang.Object,org.apache.directory.shared.ldap.entry.ServerEntry,java.lang.Long> |
LdifPartition.getUserIndex(java.lang.String id)
|
Index<?,E,java.lang.Long> |
LdifStore.getUserIndex(java.lang.String id)
|
Methods in org.apache.directory.server.core.partition.ldif that return types with arguments of type Index | |
---|---|
java.util.Set<Index<?,E,java.lang.Long>> |
LdifStore.getUserIndices()
|
Methods in org.apache.directory.server.core.partition.ldif with parameters of type Index | |
---|---|
void |
LdifStore.addIndex(Index<?,E,java.lang.Long> index)
|
void |
LdifPartition.addIndexOn(Index<? extends java.lang.Object,org.apache.directory.shared.ldap.entry.ServerEntry,java.lang.Long> index)
|
void |
LdifStore.setAliasIndex(Index<java.lang.String,E,java.lang.Long> index)
|
void |
LdifPartition.setAliasIndexOn(Index<java.lang.String,org.apache.directory.shared.ldap.entry.ServerEntry,java.lang.Long> index)
|
void |
LdifStore.setEntryCsnIndex(Index<java.lang.String,E,java.lang.Long> index)
|
void |
LdifStore.setEntryUuidIndex(Index<java.lang.String,E,java.lang.Long> index)
|
void |
LdifStore.setNdnIndex(Index<java.lang.String,E,java.lang.Long> index)
|
void |
LdifPartition.setNdnIndexOn(Index<java.lang.String,org.apache.directory.shared.ldap.entry.ServerEntry,java.lang.Long> index)
|
void |
LdifStore.setObjectClassIndex(Index<java.lang.String,E,java.lang.Long> index)
|
void |
LdifStore.setOneAliasIndex(Index<java.lang.Long,E,java.lang.Long> index)
|
void |
LdifPartition.setOneAliasIndexOn(Index<java.lang.Long,org.apache.directory.shared.ldap.entry.ServerEntry,java.lang.Long> index)
|
void |
LdifStore.setOneLevelIndex(Index<java.lang.Long,E,java.lang.Long> index)
|
void |
LdifPartition.setOneLevelIndexOn(Index<java.lang.Long,org.apache.directory.shared.ldap.entry.ServerEntry,java.lang.Long> index)
|
void |
LdifStore.setPresenceIndex(Index<java.lang.String,E,java.lang.Long> index)
|
void |
LdifPartition.setPresenceIndexOn(Index<java.lang.String,org.apache.directory.shared.ldap.entry.ServerEntry,java.lang.Long> index)
|
void |
LdifStore.setSubAliasIndex(Index<java.lang.Long,E,java.lang.Long> index)
|
void |
LdifPartition.setSubAliasIndexOn(Index<java.lang.Long,org.apache.directory.shared.ldap.entry.ServerEntry,java.lang.Long> index)
|
void |
LdifStore.setSubLevelIndex(Index<java.lang.Long,E,java.lang.Long> index)
|
void |
LdifStore.setUpdnIndex(Index<java.lang.String,E,java.lang.Long> index)
|
void |
LdifPartition.setUpdnIndexOn(Index<java.lang.String,org.apache.directory.shared.ldap.entry.ServerEntry,java.lang.Long> index)
|
Method parameters in org.apache.directory.server.core.partition.ldif with type arguments of type Index | |
---|---|
void |
LdifStore.setUserIndices(java.util.Set<Index<?,E,java.lang.Long>> userIndices)
|
Uses of Index in org.apache.directory.server.xdbm |
---|
Classes in org.apache.directory.server.xdbm that implement Index | |
---|---|
class |
GenericIndex<K,O,ID>
A generic index implementation that is just used to hold the index configuration parameters (attributeId, cacheSize, wkDirPath). |
Methods in org.apache.directory.server.xdbm that return Index | |
---|---|
Index<java.lang.String,E,ID> |
Store.getAliasIndex()
|
Index<java.lang.String,org.apache.directory.shared.ldap.entry.ServerEntry,ID> |
AbstractXdbmPartition.getAliasIndex()
|
Index<java.lang.String,E,ID> |
Store.getEntryCsnIndex()
|
Index<java.lang.String,E,ID> |
Store.getEntryUuidIndex()
|
Index<java.lang.String,org.apache.directory.shared.ldap.entry.ServerEntry,ID> |
AbstractXdbmPartition.getExistenceIndex()
|
Index<?,E,ID> |
Store.getIndex(java.lang.String id)
Get the user or system index associated with the given name |
Index<java.lang.String,E,ID> |
Store.getNdnIndex()
|
Index<java.lang.String,org.apache.directory.shared.ldap.entry.ServerEntry,ID> |
AbstractXdbmPartition.getNdnIndex()
|
Index<java.lang.String,E,ID> |
Store.getObjectClassIndex()
|
Index<ID,E,ID> |
Store.getOneAliasIndex()
|
Index<ID,org.apache.directory.shared.ldap.entry.ServerEntry,ID> |
AbstractXdbmPartition.getOneAliasIndex()
|
Index<ID,E,ID> |
Store.getOneLevelIndex()
|
Index<ID,org.apache.directory.shared.ldap.entry.ServerEntry,ID> |
AbstractXdbmPartition.getOneLevelIndex()
|
Index<java.lang.String,E,ID> |
Store.getPresenceIndex()
|
Index<java.lang.String,org.apache.directory.shared.ldap.entry.ServerEntry,ID> |
AbstractXdbmPartition.getPresenceIndex()
|
Index<ID,E,ID> |
Store.getSubAliasIndex()
|
Index<ID,org.apache.directory.shared.ldap.entry.ServerEntry,ID> |
AbstractXdbmPartition.getSubAliasIndex()
|
Index<ID,E,ID> |
Store.getSubLevelIndex()
|
Index<ID,org.apache.directory.shared.ldap.entry.ServerEntry,ID> |
AbstractXdbmPartition.getSubLevelIndex()
|
Index<?,E,ID> |
Store.getSystemIndex(java.lang.String id)
Get the system index associated with the given name |
Index<? extends java.lang.Object,org.apache.directory.shared.ldap.entry.ServerEntry,ID> |
AbstractXdbmPartition.getSystemIndex(java.lang.String id)
|
Index<java.lang.String,E,ID> |
Store.getUpdnIndex()
|
Index<java.lang.String,org.apache.directory.shared.ldap.entry.ServerEntry,ID> |
AbstractXdbmPartition.getUpdnIndex()
|
Index<?,E,ID> |
Store.getUserIndex(java.lang.String id)
Get the user index associated with the given name |
Index<? extends java.lang.Object,org.apache.directory.shared.ldap.entry.ServerEntry,ID> |
AbstractXdbmPartition.getUserIndex(java.lang.String id)
|
Methods in org.apache.directory.server.xdbm that return types with arguments of type Index | |
---|---|
java.util.Set<Index<?,E,ID>> |
Store.getUserIndices()
|
Methods in org.apache.directory.server.xdbm with parameters of type Index | |
---|---|
void |
Store.addIndex(Index<?,E,ID> index)
Adds a user index to the list of index for this store |
void |
AbstractXdbmPartition.addIndexOn(Index<? extends java.lang.Object,org.apache.directory.shared.ldap.entry.ServerEntry,ID> index)
|
void |
Store.setAliasIndex(Index<java.lang.String,E,ID> index)
Set the Alias index |
void |
AbstractXdbmPartition.setAliasIndexOn(Index<java.lang.String,org.apache.directory.shared.ldap.entry.ServerEntry,ID> index)
|
void |
Store.setEntryCsnIndex(Index<java.lang.String,E,ID> index)
Set the EntryCSN index |
void |
Store.setEntryUuidIndex(Index<java.lang.String,E,ID> index)
Set the EntryUUID index |
void |
Store.setNdnIndex(Index<java.lang.String,E,ID> index)
Set the NDN index |
void |
AbstractXdbmPartition.setNdnIndexOn(Index<java.lang.String,org.apache.directory.shared.ldap.entry.ServerEntry,ID> index)
|
void |
Store.setObjectClassIndex(Index<java.lang.String,E,ID> index)
Set the ObjectClass index |
void |
Store.setOneAliasIndex(Index<ID,E,ID> index)
Set the OneAlias index |
void |
AbstractXdbmPartition.setOneAliasIndexOn(Index<ID,org.apache.directory.shared.ldap.entry.ServerEntry,ID> index)
|
void |
Store.setOneLevelIndex(Index<ID,E,ID> index)
Set the OneLevel index |
void |
AbstractXdbmPartition.setOneLevelIndexOn(Index<ID,org.apache.directory.shared.ldap.entry.ServerEntry,ID> index)
|
void |
Store.setPresenceIndex(Index<java.lang.String,E,ID> index)
Set the Presence index |
void |
AbstractXdbmPartition.setPresenceIndexOn(Index<java.lang.String,org.apache.directory.shared.ldap.entry.ServerEntry,ID> index)
|
void |
Store.setSubAliasIndex(Index<ID,E,ID> index)
Set the SubAlias index |
void |
AbstractXdbmPartition.setSubAliasIndexOn(Index<ID,org.apache.directory.shared.ldap.entry.ServerEntry,ID> index)
|
void |
Store.setSubLevelIndex(Index<ID,E,ID> index)
Set the SubLevel index |
void |
Store.setUpdnIndex(Index<java.lang.String,E,ID> index)
Set the UpDn index |
void |
AbstractXdbmPartition.setUpdnIndexOn(Index<java.lang.String,org.apache.directory.shared.ldap.entry.ServerEntry,ID> index)
|
Method parameters in org.apache.directory.server.xdbm with type arguments of type Index | |
---|---|
void |
Store.setUserIndices(java.util.Set<Index<?,E,ID>> userIndices)
Stores the list of user index |
Uses of Index in org.apache.directory.server.xdbm.tools |
---|
Methods in org.apache.directory.server.xdbm.tools with parameters of type Index | |
---|---|
static void |
IndexUtils.printContents(Index<?,org.apache.directory.shared.ldap.entry.ServerEntry,java.lang.Long> idx)
|
static void |
IndexUtils.printContents(Index<?,org.apache.directory.shared.ldap.entry.ServerEntry,java.lang.Long> idx,
java.io.OutputStream outputStream)
|
static void |
IndexDialog.show(Index<?,org.apache.directory.shared.ldap.entry.ServerEntry,java.lang.Long> index)
|
Constructors in org.apache.directory.server.xdbm.tools with parameters of type Index | |
---|---|
IndexDialog(java.awt.Frame parent,
boolean modal,
Index<K,O,ID> index)
|
|
IndexDialog(Index<K,O,ID> index)
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |