com.autonomy.aci.client.services.AciConstants Maven / Gradle / Ivy
/*
* Copyright 2006-2018 Open Text.
*
* Licensed under the MIT License (the "License"); you may not use this file
* except in compliance with the License.
*
* The only warranties for products and services of Open Text and its affiliates
* and licensors ("Open Text") are as may be set forth in the express warranty
* statements accompanying such products and services. Nothing herein should be
* construed as constituting an additional warranty. Open Text shall not be
* liable for technical or editorial errors or omissions contained herein. The
* information contained herein is subject to change without notice.
*/
package com.autonomy.aci.client.services;
/**
* Static constants for common ACI actions and their parameters.
*/
public final class AciConstants {
public static final String ACTION_ENCRYPTED = "Encrypted";
public static final String ACTION_GET_CHILDREN = "GetChildren";
public static final String ACTION_GET_LICENSE_INFO = "GetLicenseInfo";
public static final String ACTION_GET_PID = "GetPid";
public static final String ACTION_GET_REQUEST_LOG = "GetRequestLog";
public static final String ACTION_GET_STATUS = "GetStatus";
public static final String ACTION_GET_VERSION = "GetVersion";
public static final String ACTION_THREAD_STATUS = "ThreadStatus";
public static final String PARAM_ACTION = "Action";
public static final String PARAM_DATA = "Data";
public static final String PARAM_ENCRYPT_RESPONSE = "EncryptResponse";
public static final String PARAM_FILENAME = "FileName";
public static final String PARAM_FORCE_TEMPLATE_REFRESH = "ForceTemplateRefresh";
public static final String PARAM_FORMAT = "Format";
public static final String PARAM_OPEN_LINKS = "OpenLinks";
public static final String PARAM_OUTPUT = "Output";
public static final String PARAM_REFRESH = "Refresh";
public static final String PARAM_RESPONSE_FORMAT = "ResponseFormat";
public static final String PARAM_TAIL = "Tail";
public static final String PARAM_TEMPLATE = "Template";
public static final String PARAM_TEMPLATE_PARAMS_CSVS = "TemplateParamsCSVs";
}