|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<TimedSSLFactories> com.sun.faban.driver.transport.hc3.TimedSSLFactories
public 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.
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 |
---|
public static final TimedSSLFactories ABOVE
public static final TimedSSLFactories BELOW
Method Detail |
---|
public static TimedSSLFactories[] values()
for (TimedSSLFactories c : TimedSSLFactories.values()) System.out.println(c);
public static TimedSSLFactories valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |