Uses of Interface
com.netscape.certsrv.template.IArgValue

Packages that use IArgValue
com.netscape.certsrv.template   
com.netscape.cms.servlet.profile   
 

Uses of IArgValue in com.netscape.certsrv.template
 

Classes in com.netscape.certsrv.template that implement IArgValue
 class ArgList
          This class represents a list of arguments that will be returned to the end-user via the template framework.
 class ArgSet
          This class represents a set of arguments.
 class ArgString
          This class represents a string-based argument.
 

Methods in com.netscape.certsrv.template that return IArgValue
 IArgValue ArgList.get(int pos)
          Returns the argument at the given position Position starts from 0.
 IArgValue ArgSet.get(java.lang.String name)
          Retrieves argument from the set.
 

Methods in com.netscape.certsrv.template with parameters of type IArgValue
 void ArgList.add(IArgValue arg)
          Adds an argument to the list.
 void ArgSet.set(java.lang.String name, IArgValue arg)
          Sets argument into the set with the given name.
 

Uses of IArgValue in com.netscape.cms.servlet.profile
 

Methods in com.netscape.cms.servlet.profile with parameters of type IArgValue
protected  void ProfileServlet.outputArgValueAsXML(java.io.PrintStream ps, java.lang.String name, IArgValue v)