com.ibm.pim.utils
Enum Distribution.Property

java.lang.Object
  extended by java.lang.Enum<Distribution.Property>
      extended by com.ibm.pim.utils.Distribution.Property
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<Distribution.Property>
Enclosing interface:
Distribution

public static enum Distribution.Property
extends java.lang.Enum<Distribution.Property>

Distribution Property Type


Enum Constant Summary
EMAIL
          Property to set email address for EMAIL Type distribution
HOSTNAME
          Property for setting server name for FTP Type Distribution
PASSWORD
          Property for setting password for FTP Type Distribution
PATH
          Property for setting destination path for FTP Type Distribution and script path in CUSTOM Distribution.
POST_TYPE
          Property for setting the post type for POST Type Distribution
URL
          Property for setting URL for POST Type Distribution
USERID
          Property for setting UserId for FTP Type Distribution
 
Method Summary
static Distribution.Property valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Distribution.Property[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

EMAIL

public static final Distribution.Property EMAIL
Property to set email address for EMAIL Type distribution


HOSTNAME

public static final Distribution.Property HOSTNAME
Property for setting server name for FTP Type Distribution


USERID

public static final Distribution.Property USERID
Property for setting UserId for FTP Type Distribution


PASSWORD

public static final Distribution.Property PASSWORD
Property for setting password for FTP Type Distribution


PATH

public static final Distribution.Property PATH
Property for setting destination path for FTP Type Distribution and script path in CUSTOM Distribution. Note that in case of Custom Distribution, the value should be the script name without any path.


URL

public static final Distribution.Property URL
Property for setting URL for POST Type Distribution


POST_TYPE

public static final Distribution.Property POST_TYPE
Property for setting the post type for POST Type Distribution

Method Detail

values

public static final Distribution.Property[] values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants as follows:
for(Distribution.Property c : Distribution.Property.values())
        System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they're declared

valueOf

public static Distribution.Property valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name