Package com.netscape.certsrv.template
Class ArgSet
- java.lang.Object
-
- com.netscape.certsrv.template.ArgSet
-
-
Constructor Summary
Constructors Constructor Description ArgSet()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description IArgValueget(java.lang.String name)Retrieves argument from the set.java.util.Enumeration<java.lang.String>getNames()Returns a list of argument names.voidset(java.lang.String name, IArgValue arg)Sets argument into the set with the given name.voidset(java.lang.String name, java.lang.String arg)Sets string argument into the set with the given name.
-
-
-
Method Detail
-
getNames
public java.util.Enumeration<java.lang.String> getNames()
Returns a list of argument names.- Returns:
- list of argument names
-
set
public void set(java.lang.String name, java.lang.String arg)Sets string argument into the set with the given name.- Parameters:
name- argument namearg- argument in string
-
set
public void set(java.lang.String name, IArgValue arg)Sets argument into the set with the given name.- Parameters:
name- argument namearg- argument value
-
get
public IArgValue get(java.lang.String name)
Retrieves argument from the set.- Parameters:
name- argument name- Returns:
- argument value
-
-