com.sun.faban.driver.transport.hc3
Enum TimedSSLFactories

java.lang.Object
  extended by java.lang.Enum<TimedSSLFactories>
      extended by com.sun.faban.driver.transport.hc3.TimedSSLFactories
All Implemented Interfaces:
Serializable, Comparable<TimedSSLFactories>

public enum TimedSSLFactories
extends Enum<TimedSSLFactories>

The catalog of the SSL factories at hand. By default, ABOVE is used as it is more widely recognized. This times the traffic above the SSL protocol layer. For pure, SUT only measurements, you may want to consider BELOW which times the traffic after encryption and thus won't include the time used for encrypting/decrypting the payload. The system property faban.ssl.autotiming may be set to "above" or "below" to influence the behavior.

Author:
Akara Sucharitakul

Enum Constant Summary
ABOVE
          Attach timing above the SSL layer.
BELOW
          Attach timing below the SSL layer.
 
Method Summary
static TimedSSLFactories valueOf(String name)
          Returns the enum constant of this type with the specified name.
static TimedSSLFactories[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

ABOVE

public static final TimedSSLFactories ABOVE
Attach timing above the SSL layer.


BELOW

public static final TimedSSLFactories BELOW
Attach timing below the SSL layer.

Method Detail

values

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

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

valueOf

public static TimedSSLFactories valueOf(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:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null