org.openliberty.wsc
Enum DiscoveryService.WSFServiceType

java.lang.Object
  extended by java.lang.Enum<DiscoveryService.WSFServiceType>
      extended by org.openliberty.wsc.DiscoveryService.WSFServiceType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<DiscoveryService.WSFServiceType>
Enclosing class:
DiscoveryService

public static enum DiscoveryService.WSFServiceType
extends java.lang.Enum<DiscoveryService.WSFServiceType>

An enumeration of services currently supported by the client library

Author:
asa

Enum Constant Summary
AUTHENTICATION_SERVICE
           
DIRECTORY_ACCESS_PROTOCOL_SERVICE
           
DISCOVERY_SERVICE
           
PEOPLE_SERVICE
           
PERSONAL_PROFILE_SERVICE
           
 
Field Summary
private  java.lang.String urn
           
 
Method Summary
 java.lang.String getUrn()
           
static DiscoveryService.WSFServiceType serviceForUrn(java.lang.String urn)
           
static DiscoveryService.WSFServiceType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static DiscoveryService.WSFServiceType[] 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

AUTHENTICATION_SERVICE

public static final DiscoveryService.WSFServiceType AUTHENTICATION_SERVICE

DISCOVERY_SERVICE

public static final DiscoveryService.WSFServiceType DISCOVERY_SERVICE

PERSONAL_PROFILE_SERVICE

public static final DiscoveryService.WSFServiceType PERSONAL_PROFILE_SERVICE

PEOPLE_SERVICE

public static final DiscoveryService.WSFServiceType PEOPLE_SERVICE

DIRECTORY_ACCESS_PROTOCOL_SERVICE

public static final DiscoveryService.WSFServiceType DIRECTORY_ACCESS_PROTOCOL_SERVICE
Field Detail

urn

private java.lang.String urn
Method Detail

values

public static final DiscoveryService.WSFServiceType[] 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(DiscoveryService.WSFServiceType c : DiscoveryService.WSFServiceType.values())
        System.out.println(c);

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

valueOf

public static DiscoveryService.WSFServiceType 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

serviceForUrn

public static DiscoveryService.WSFServiceType serviceForUrn(java.lang.String urn)

getUrn

public java.lang.String getUrn()