com.sas.edir.delivery
Class Parameter

java.lang.Object
  |
  +--java.util.AbstractMap
        |
        +--java.util.HashMap
              |
              +--com.sas.edir.delivery.Parameter
All Implemented Interfaces:
java.lang.Cloneable, java.util.Map, java.io.Serializable

public class Parameter
extends java.util.HashMap

A parameter is an attribute on stored processes that defines the an input variable that can be used to tailor the output.

Version:
1.0
Author:
SAS
See Also:
Serialized Form

Inner classes inherited from class java.util.Map
java.util.Map.Entry
 
Field Summary
static java.lang.String DATA_SOURCE
          Specifies a data source for valid values for this parameter
static java.lang.String DEFAULT_VALUE
          A default value for the parameter.
static java.lang.String DESCRIPTION
          Provides a description of the parameter to help the user give valid input
static java.lang.String LABEL
          A label to show on the GUI for the parameter.
static java.lang.String NAME
          The name of the parameter.
static java.lang.String REPORT_QUERY
          report query?
static java.lang.String REQUIRED
          Flag specifying whether the parameter is required.
static java.lang.String VALUES
          A list of valid values for this parameter.
 
Constructor Summary
Parameter(java.lang.String parameters)
          Create a new LdapParameter using the delimited string of arguments.
 
Methods inherited from class java.util.HashMap
clear, clone, containsKey, containsValue, entrySet, get, isEmpty, keySet, put, putAll, remove, size, values
 
Methods inherited from class java.util.AbstractMap
equals, hashCode, toString
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 
Methods inherited from interface java.util.Map
equals, hashCode
 

Field Detail

DATA_SOURCE

public static final java.lang.String DATA_SOURCE
Specifies a data source for valid values for this parameter

DESCRIPTION

public static final java.lang.String DESCRIPTION
Provides a description of the parameter to help the user give valid input

DEFAULT_VALUE

public static final java.lang.String DEFAULT_VALUE
A default value for the parameter.

NAME

public static final java.lang.String NAME
The name of the parameter.

REQUIRED

public static final java.lang.String REQUIRED
Flag specifying whether the parameter is required.

VALUES

public static final java.lang.String VALUES
A list of valid values for this parameter.

REPORT_QUERY

public static final java.lang.String REPORT_QUERY
report query?

LABEL

public static final java.lang.String LABEL
A label to show on the GUI for the parameter.
Constructor Detail

Parameter

public Parameter(java.lang.String parameters)
Create a new LdapParameter using the delimited string of arguments.

Parameters:
parameters - Specifies the parameter data. See Parameter for a list of recognized options.