Searched refs:DITCacheMap (Results 1 - 25 of 36) sorted by relevance

12

/forgerock/opendj2/src/server/org/opends/server/authorization/dseecompat/
H A DAciList.java38 import org.opends.server.api.DITCacheMap;
51 private volatile DITCacheMap<List<Aci>> aciList =
52 new DITCacheMap<List<Aci>>();
243 private static int addAciAttributeList(DITCacheMap<List<Aci>> aciList,
332 private static void addAci(DITCacheMap<List<Aci>> aciList, DN dn,
/forgerock/opendj-b2.6/src/server/org/opends/server/authorization/dseecompat/
H A DAciList.java35 import org.opends.server.api.DITCacheMap;
51 private volatile DITCacheMap<List<Aci>> aciList =
52 new DITCacheMap<List<Aci>>();
247 private static int addAciAttributeList(DITCacheMap<List<Aci>> aciList,
336 private static void addAci(DITCacheMap<List<Aci>> aciList, DN dn,
/forgerock/opendj2.6.2/src/server/org/opends/server/authorization/dseecompat/
H A DAciList.java36 import org.opends.server.api.DITCacheMap;
52 private volatile DITCacheMap<List<Aci>> aciList =
53 new DITCacheMap<List<Aci>>();
248 private static int addAciAttributeList(DITCacheMap<List<Aci>> aciList,
337 private static void addAci(DITCacheMap<List<Aci>> aciList, DN dn,
/forgerock/opendj2-hg/src/server/org/opends/server/authorization/dseecompat/
H A DAciList.java38 import org.opends.server.api.DITCacheMap;
51 private volatile DITCacheMap<List<Aci>> aciList =
52 new DITCacheMap<List<Aci>>();
243 private static int addAciAttributeList(DITCacheMap<List<Aci>> aciList,
332 private static void addAci(DITCacheMap<List<Aci>> aciList, DN dn,
/forgerock/opendj2-jel-hg/src/server/org/opends/server/authorization/dseecompat/
H A DAciList.java35 import org.opends.server.api.DITCacheMap;
51 private volatile DITCacheMap<List<Aci>> aciList =
52 new DITCacheMap<List<Aci>>();
247 private static int addAciAttributeList(DITCacheMap<List<Aci>> aciList,
336 private static void addAci(DITCacheMap<List<Aci>> aciList, DN dn,
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/authorization/dseecompat/
H A DAciList.java37 import org.opends.server.api.DITCacheMap;
54 private volatile DITCacheMap<List<Aci>> aciList = new DITCacheMap<>();
245 private static int addAciAttributeList(DITCacheMap<List<Aci>> aciList,
329 private static void addAci(DITCacheMap<List<Aci>> aciList, DN dn,
/forgerock/opendj-b2.6/src/server/org/opends/server/core/
H A DAuthenticatedUsers.java40 import org.opends.server.api.DITCacheMap;
74 private DITCacheMap<CopyOnWriteArraySet<ClientConnection>> userMap;
85 userMap = new DITCacheMap<CopyOnWriteArraySet<ClientConnection>>();
H A DGroupManager.java48 import org.opends.server.api.DITCacheMap;
127 private DITCacheMap<Group> groupInstances;
158 groupInstances = new DITCacheMap<Group>();
H A DSubentryManager.java39 import org.opends.server.api.DITCacheMap;
99 private DITCacheMap<SubEntry> dit2SubEntry;
142 dit2SubEntry = new DITCacheMap<SubEntry>();
/forgerock/opendj2/src/server/org/opends/server/core/
H A DAuthenticatedUsers.java37 import org.opends.server.api.DITCacheMap;
71 private final DITCacheMap<CopyOnWriteArraySet<ClientConnection>> userMap;
89 userMap = new DITCacheMap<CopyOnWriteArraySet<ClientConnection>>();
H A DGroupManager.java45 import org.opends.server.api.DITCacheMap;
107 private DITCacheMap<Group> groupInstances;
138 groupInstances = new DITCacheMap<Group>();
H A DSubentryManager.java38 import org.opends.server.api.DITCacheMap;
98 private DITCacheMap<SubEntry> dit2SubEntry;
141 dit2SubEntry = new DITCacheMap<SubEntry>();
/forgerock/opendj2.6.2/src/server/org/opends/server/core/
H A DAuthenticatedUsers.java40 import org.opends.server.api.DITCacheMap;
74 private DITCacheMap<CopyOnWriteArraySet<ClientConnection>> userMap;
85 userMap = new DITCacheMap<CopyOnWriteArraySet<ClientConnection>>();
H A DGroupManager.java48 import org.opends.server.api.DITCacheMap;
127 private DITCacheMap<Group> groupInstances;
158 groupInstances = new DITCacheMap<Group>();
/forgerock/opendj2-jel-hg/src/server/org/opends/server/core/
H A DAuthenticatedUsers.java40 import org.opends.server.api.DITCacheMap;
74 private DITCacheMap<CopyOnWriteArraySet<ClientConnection>> userMap;
85 userMap = new DITCacheMap<CopyOnWriteArraySet<ClientConnection>>();
/forgerock/opendj2-hg/src/server/org/opends/server/core/
H A DAuthenticatedUsers.java37 import org.opends.server.api.DITCacheMap;
71 private final DITCacheMap<CopyOnWriteArraySet<ClientConnection>> userMap;
89 userMap = new DITCacheMap<CopyOnWriteArraySet<ClientConnection>>();
H A DGroupManager.java45 import org.opends.server.api.DITCacheMap;
107 private DITCacheMap<Group> groupInstances;
138 groupInstances = new DITCacheMap<Group>();
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/core/
H A DAuthenticatedUsers.java39 import org.opends.server.api.DITCacheMap;
71 private final DITCacheMap<CopyOnWriteArraySet<ClientConnection>> userMap;
89 userMap = new DITCacheMap<>();
H A DGroupManager.java64 import org.opends.server.api.DITCacheMap;
128 private DITCacheMap<Group<?>> groupInstances;
159 groupInstances = new DITCacheMap<>();
/forgerock/opendj2/src/server/org/opends/server/api/
H A DDITCacheMap.java42 * The DITCacheMap class implements custom Map for structural
86 public final class DITCacheMap<T> extends AbstractMap<DN,T> class in inherits:AbstractMap
136 public DITCacheMap() method in class:DITCacheMap
142 * Constructs a new DITCacheMap from a given Map.
144 * DITCacheMap from.
146 public DITCacheMap(Map<? extends DN, ? extends T> m) method in class:DITCacheMap
498 * EntrySet class implementation for the DITCacheMap.
586 if (DITCacheMap.this.remove(currentEntry.getKey()) != null)
621 return DITCacheMap.this.size();
634 * Map.Entry class implementation for the DITCacheMap
[all...]
/forgerock/opendj-b2.6/src/server/org/opends/server/api/
H A DDITCacheMap.java43 * The DITCacheMap class implements custom Map for structural
87 public final class DITCacheMap<T> extends AbstractMap<DN,T> class in inherits:AbstractMap
137 public DITCacheMap() method in class:DITCacheMap
143 * Constructs a new DITCacheMap from a given Map.
145 * DITCacheMap from.
147 public DITCacheMap(Map<? extends DN, ? extends T> m) method in class:DITCacheMap
499 * EntrySet class implementation for the DITCacheMap.
587 if (DITCacheMap.this.remove(currentEntry.getKey()) != null)
622 return DITCacheMap.this.size();
635 * Map.Entry class implementation for the DITCacheMap
[all...]
/forgerock/opendj2.6.2/src/server/org/opends/server/api/
H A DDITCacheMap.java43 * The DITCacheMap class implements custom Map for structural
87 public final class DITCacheMap<T> extends AbstractMap<DN,T> class in inherits:AbstractMap
137 public DITCacheMap() method in class:DITCacheMap
143 * Constructs a new DITCacheMap from a given Map.
145 * DITCacheMap from.
147 public DITCacheMap(Map<? extends DN, ? extends T> m) method in class:DITCacheMap
499 * EntrySet class implementation for the DITCacheMap.
587 if (DITCacheMap.this.remove(currentEntry.getKey()) != null)
622 return DITCacheMap.this.size();
635 * Map.Entry class implementation for the DITCacheMap
[all...]
/forgerock/opendj2-hg/src/server/org/opends/server/api/
H A DDITCacheMap.java42 * The DITCacheMap class implements custom Map for structural
86 public final class DITCacheMap<T> extends AbstractMap<DN,T> class in inherits:AbstractMap
136 public DITCacheMap() method in class:DITCacheMap
142 * Constructs a new DITCacheMap from a given Map.
144 * DITCacheMap from.
146 public DITCacheMap(Map<? extends DN, ? extends T> m) method in class:DITCacheMap
498 * EntrySet class implementation for the DITCacheMap.
586 if (DITCacheMap.this.remove(currentEntry.getKey()) != null)
621 return DITCacheMap.this.size();
634 * Map.Entry class implementation for the DITCacheMap
[all...]
/forgerock/opendj2-jel-hg/src/server/org/opends/server/api/
H A DDITCacheMap.java43 * The DITCacheMap class implements custom Map for structural
87 public final class DITCacheMap<T> extends AbstractMap<DN,T> class in inherits:AbstractMap
137 public DITCacheMap() method in class:DITCacheMap
143 * Constructs a new DITCacheMap from a given Map.
145 * DITCacheMap from.
147 public DITCacheMap(Map<? extends DN, ? extends T> m) method in class:DITCacheMap
499 * EntrySet class implementation for the DITCacheMap.
587 if (DITCacheMap.this.remove(currentEntry.getKey()) != null)
622 return DITCacheMap.this.size();
635 * Map.Entry class implementation for the DITCacheMap
[all...]
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/api/
H A DDITCacheMap.java41 * The DITCacheMap class implements custom Map for structural storage of
80 public final class DITCacheMap<T> extends AbstractMap<DN,T> class in inherits:AbstractMap
127 public DITCacheMap() method in class:DITCacheMap
132 * Constructs a new DITCacheMap from a given Map.
134 * DITCacheMap from.
136 public DITCacheMap(Map<? extends DN, ? extends T> m) method in class:DITCacheMap
452 /** EntrySet class implementation for the DITCacheMap. */
532 if (DITCacheMap.this.remove(currentEntry.getKey()) != null)
564 return DITCacheMap.this.size();
575 /** Map.Entry class implementation for the DITCacheMap
[all...]

Completed in 495 milliseconds

12