Package com.dynatrace.openkit.protocol
Enum ResponseAttribute
- java.lang.Object
-
- java.lang.Enum<ResponseAttribute>
-
- com.dynatrace.openkit.protocol.ResponseAttribute
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<ResponseAttribute>
public enum ResponseAttribute extends java.lang.Enum<ResponseAttribute>
Specifies an attribute in theResponseAttributessent by the server.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description APPLICATION_IDThe ID of the application to which a configuration applies.IS_CAPTUREIndicator whether capturing data is allowed or not.IS_CAPTURE_CRASHESIndicator whether crashes should be captured or not.IS_CAPTURE_ERRORSIndicator whether errors should be captured or not.MAX_BEACON_SIZEMaximum POST body size when sending beacon data.MAX_EVENTS_PER_SESSIONMaximum number of top level actions after which a session is split.MAX_SESSION_DURATIONMaximum duration after which a session is split.MULTIPLICITYMultiplicitySEND_INTERVALSend intervalSERVER_IDThe ID of the server to which data should be sent to.SESSION_TIMEOUTIdle timeout after which a session is split.STATUSStatus of the new session configuration request.TIMESTAMPTimestamp of the configuration sent by the server.TRAFFIC_CONTROL_PERCENTAGESampling percentage for sessions.VISIT_STORE_VERSIONVersion of the visit store to be used.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ResponseAttributevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static ResponseAttribute[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
MAX_BEACON_SIZE
public static final ResponseAttribute MAX_BEACON_SIZE
Maximum POST body size when sending beacon data.
-
MAX_SESSION_DURATION
public static final ResponseAttribute MAX_SESSION_DURATION
Maximum duration after which a session is split.
-
MAX_EVENTS_PER_SESSION
public static final ResponseAttribute MAX_EVENTS_PER_SESSION
Maximum number of top level actions after which a session is split.
-
SESSION_TIMEOUT
public static final ResponseAttribute SESSION_TIMEOUT
Idle timeout after which a session is split.
-
SEND_INTERVAL
public static final ResponseAttribute SEND_INTERVAL
Send interval
-
VISIT_STORE_VERSION
public static final ResponseAttribute VISIT_STORE_VERSION
Version of the visit store to be used.
-
IS_CAPTURE
public static final ResponseAttribute IS_CAPTURE
Indicator whether capturing data is allowed or not.
-
IS_CAPTURE_CRASHES
public static final ResponseAttribute IS_CAPTURE_CRASHES
Indicator whether crashes should be captured or not.
-
IS_CAPTURE_ERRORS
public static final ResponseAttribute IS_CAPTURE_ERRORS
Indicator whether errors should be captured or not.
-
TRAFFIC_CONTROL_PERCENTAGE
public static final ResponseAttribute TRAFFIC_CONTROL_PERCENTAGE
Sampling percentage for sessions.
-
APPLICATION_ID
public static final ResponseAttribute APPLICATION_ID
The ID of the application to which a configuration applies.
-
MULTIPLICITY
public static final ResponseAttribute MULTIPLICITY
Multiplicity
-
SERVER_ID
public static final ResponseAttribute SERVER_ID
The ID of the server to which data should be sent to.
-
STATUS
public static final ResponseAttribute STATUS
Status of the new session configuration request.
-
TIMESTAMP
public static final ResponseAttribute TIMESTAMP
Timestamp of the configuration sent by the server.
-
-
Method Detail
-
values
public static ResponseAttribute[] 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 (ResponseAttribute c : ResponseAttribute.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ResponseAttribute 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 namejava.lang.NullPointerException- if the argument is null
-
-