Package com.netscape.certsrv.pattern
Class AttrSetCollection
- java.lang.Object
-
- java.util.Dictionary<K,V>
-
- java.util.Hashtable<java.lang.String,IAttrSet>
-
- com.netscape.certsrv.pattern.AttrSetCollection
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Cloneable
,java.util.Map<java.lang.String,IAttrSet>
public class AttrSetCollection extends java.util.Hashtable<java.lang.String,IAttrSet>
This class represents a collection of attribute sets.- Version:
- $Revision$, $Date$
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description AttrSetCollection()
Constructs a collection.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description IAttrSet
getAttrSet(java.lang.String name)
Retrieves a attribute set from this collection.void
putAttrSet(java.lang.String name, IAttrSet set)
Sets attribute set in this collection.-
Methods inherited from class java.util.Hashtable
clear, clone, compute, computeIfAbsent, computeIfPresent, contains, containsKey, containsValue, elements, entrySet, equals, forEach, get, getOrDefault, hashCode, isEmpty, keys, keySet, merge, put, putAll, putIfAbsent, rehash, remove, remove, replace, replace, replaceAll, size, toString, values
-
-
-
-
Method Detail
-
getAttrSet
public IAttrSet getAttrSet(java.lang.String name)
Retrieves a attribute set from this collection.- Parameters:
name
- name of the attribute set- Returns:
- attribute set
-
putAttrSet
public void putAttrSet(java.lang.String name, IAttrSet set)
Sets attribute set in this collection.- Parameters:
name
- set of the attribute setset
- attribute set
-
-