Enum ServiceNowParams
- java.lang.Object
-
- java.lang.Enum<ServiceNowParams>
-
- org.apache.camel.component.servicenow.ServiceNowParams
-
- All Implemented Interfaces:
Serializable
,Comparable<ServiceNowParams>
,ServiceNowParam
public enum ServiceNowParams extends Enum<ServiceNowParams> implements ServiceNowParam
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Object
getDefaultValue(ServiceNowConfiguration configuration)
String
getHeader()
Object
getHeaderValue(org.apache.camel.Message message)
Object
getHeaderValue(org.apache.camel.Message message, ServiceNowConfiguration configuration)
String
getId()
Class<?>
getType()
static ServiceNowParams
valueOf(String name)
Returns the enum constant of this type with the specified name.static ServiceNowParams[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PARAM_SYS_ID
public static final ServiceNowParams PARAM_SYS_ID
-
PARAM_USER_SYS_ID
public static final ServiceNowParams PARAM_USER_SYS_ID
-
PARAM_USER_ID
public static final ServiceNowParams PARAM_USER_ID
-
PARAM_CART_ITEM_ID
public static final ServiceNowParams PARAM_CART_ITEM_ID
-
PARAM_FILE_NAME
public static final ServiceNowParams PARAM_FILE_NAME
-
PARAM_TABLE_NAME
public static final ServiceNowParams PARAM_TABLE_NAME
-
PARAM_TABLE_SYS_ID
public static final ServiceNowParams PARAM_TABLE_SYS_ID
-
PARAM_ENCRYPTION_CONTEXT
public static final ServiceNowParams PARAM_ENCRYPTION_CONTEXT
-
SYSPARM_CATEGORY
public static final ServiceNowParams SYSPARM_CATEGORY
-
SYSPARM_TYPE
public static final ServiceNowParams SYSPARM_TYPE
-
SYSPARM_CATALOG
public static final ServiceNowParams SYSPARM_CATALOG
-
SYSPARM_QUERY
public static final ServiceNowParams SYSPARM_QUERY
-
SYSPARM_DISPLAY_VALUE
public static final ServiceNowParams SYSPARM_DISPLAY_VALUE
-
SYSPARM_INPUT_DISPLAY_VALUE
public static final ServiceNowParams SYSPARM_INPUT_DISPLAY_VALUE
-
SYSPARM_EXCLUDE_REFERENCE_LINK
public static final ServiceNowParams SYSPARM_EXCLUDE_REFERENCE_LINK
-
SYSPARM_FIELDS
public static final ServiceNowParams SYSPARM_FIELDS
-
SYSPARM_LIMIT
public static final ServiceNowParams SYSPARM_LIMIT
-
SYSPARM_TEXT
public static final ServiceNowParams SYSPARM_TEXT
-
SYSPARM_OFFSET
public static final ServiceNowParams SYSPARM_OFFSET
-
SYSPARM_VIEW
public static final ServiceNowParams SYSPARM_VIEW
-
SYSPARM_SUPPRESS_AUTO_SYS_FIELD
public static final ServiceNowParams SYSPARM_SUPPRESS_AUTO_SYS_FIELD
-
SYSPARM_SUPPRESS_PAGINATION_HEADER
public static final ServiceNowParams SYSPARM_SUPPRESS_PAGINATION_HEADER
-
SYSPARM_MIN_FIELDS
public static final ServiceNowParams SYSPARM_MIN_FIELDS
-
SYSPARM_MAX_FIELDS
public static final ServiceNowParams SYSPARM_MAX_FIELDS
-
SYSPARM_SUM_FIELDS
public static final ServiceNowParams SYSPARM_SUM_FIELDS
-
SYSPARM_AVG_FIELDS
public static final ServiceNowParams SYSPARM_AVG_FIELDS
-
SYSPARM_COUNT
public static final ServiceNowParams SYSPARM_COUNT
-
SYSPARM_GROUP_BY
public static final ServiceNowParams SYSPARM_GROUP_BY
-
SYSPARM_ORDER_BY
public static final ServiceNowParams SYSPARM_ORDER_BY
-
SYSPARM_HAVING
public static final ServiceNowParams SYSPARM_HAVING
-
SYSPARM_UUID
public static final ServiceNowParams SYSPARM_UUID
-
SYSPARM_BREAKDOWN
public static final ServiceNowParams SYSPARM_BREAKDOWN
-
SYSPARM_INCLUDE_SCORES
public static final ServiceNowParams SYSPARM_INCLUDE_SCORES
-
SYSPARM_INCLUDE_SCORE_NOTES
public static final ServiceNowParams SYSPARM_INCLUDE_SCORE_NOTES
-
SYSPARM_INCLUDE_AGGREGATES
public static final ServiceNowParams SYSPARM_INCLUDE_AGGREGATES
-
SYSPARM_INCLUDE_AVAILABLE_BREAKDOWNS
public static final ServiceNowParams SYSPARM_INCLUDE_AVAILABLE_BREAKDOWNS
-
SYSPARM_INCLUDE_AVAILABLE_AGGREGATES
public static final ServiceNowParams SYSPARM_INCLUDE_AVAILABLE_AGGREGATES
-
SYSPARM_FAVORITES
public static final ServiceNowParams SYSPARM_FAVORITES
-
SYSPARM_KEY
public static final ServiceNowParams SYSPARM_KEY
-
SYSPARM_TARGET
public static final ServiceNowParams SYSPARM_TARGET
-
SYSPARM_DISPLAY
public static final ServiceNowParams SYSPARM_DISPLAY
-
SYSPARM_PER_PAGE
public static final ServiceNowParams SYSPARM_PER_PAGE
-
SYSPARM_SORT_BY
public static final ServiceNowParams SYSPARM_SORT_BY
-
SYSPARM_SORT_DIR
public static final ServiceNowParams SYSPARM_SORT_DIR
-
SYSPARM_CONTAINS
public static final ServiceNowParams SYSPARM_CONTAINS
-
SYSPARM_TAGS
public static final ServiceNowParams SYSPARM_TAGS
-
SYSPARM_PAGE
public static final ServiceNowParams SYSPARM_PAGE
-
SYSPARM_ELEMENTS_FILTER
public static final ServiceNowParams SYSPARM_ELEMENTS_FILTER
-
SYSPARM_BREAKDOWN_RELATION
public static final ServiceNowParams SYSPARM_BREAKDOWN_RELATION
-
SYSPARM_DATA_SOURCE
public static final ServiceNowParams SYSPARM_DATA_SOURCE
-
SYSPARM_TOP_LEVEL_ONLY
public static final ServiceNowParams SYSPARM_TOP_LEVEL_ONLY
-
-
Method Detail
-
values
public static ServiceNowParams[] 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 (ServiceNowParams c : ServiceNowParams.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ServiceNowParams 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 nameNullPointerException
- if the argument is null
-
getId
public String getId()
- Specified by:
getId
in interfaceServiceNowParam
-
getHeader
public String getHeader()
- Specified by:
getHeader
in interfaceServiceNowParam
-
getType
public Class<?> getType()
- Specified by:
getType
in interfaceServiceNowParam
-
getDefaultValue
public Object getDefaultValue(ServiceNowConfiguration configuration)
- Specified by:
getDefaultValue
in interfaceServiceNowParam
-
getHeaderValue
public Object getHeaderValue(org.apache.camel.Message message)
- Specified by:
getHeaderValue
in interfaceServiceNowParam
-
getHeaderValue
public Object getHeaderValue(org.apache.camel.Message message, ServiceNowConfiguration configuration)
- Specified by:
getHeaderValue
in interfaceServiceNowParam
-
-