org.bonitasoft.engine.api.result.StatusContext Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bonita-common Show documentation
Show all versions of bonita-common Show documentation
Bonita Common is the useful layer common to bonita-client and bonita-server
/**
* Copyright (C) 2017 Bonitasoft S.A.
* Bonitasoft, 32 rue Gustave Eiffel - 38000 Grenoble
* This library is free software; you can redistribute it and/or modify it under the terms
* of the GNU Lesser General Public License as published by the Free Software Foundation
* version 2.1 of the License.
* This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
* See the GNU Lesser General Public License for more details.
* You should have received a copy of the GNU Lesser General Public License along with this
* program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
* Floor, Boston, MA 02110-1301, USA.
**/
package org.bonitasoft.engine.api.result;
import java.io.Serializable;
import java.util.HashMap;
import java.util.Map;
/**
* @author Emmanuel Duchastenier
*/
public class StatusContext extends HashMap {
public static final String BUSINESS_OBJECT_NAME_KEY = "businessObjectName";
public static final String ACCESS_RULE_NAME_KEY = "accessRuleName";
public static final String ATTRIBUTE_NAME_KEY = "attributeName";
public static final String PROFILE_NAME_KEY = "profileName";
public static final String BDM_ARTIFACT_KEY = "bdmArtifact";
public static final String BDM_ARTIFACT_NAME_KEY = "bdmArtifactName";
public static final String INVALID_NAME_KEY = "invalidName";
public static final String LIVING_APPLICATION_TOKEN_KEY = "livingApplicationToken";
public static final String LIVING_APPLICATION_IMPORT_STATUS_KEY = "livingApplicationImportStatus";
public static final String LIVING_APPLICATION_INVALID_ELEMENT_NAME = "livingApplicationInvalidElementName";
public static final String LIVING_APPLICATION_INVALID_ELEMENT_TYPE = "livingApplicationInvalidElementType";
public static final String PROCESS_NAME_KEY = "processName";
public static final String PROCESS_VERSION_KEY = "processVersion";
public static final String PROCESS_RESOLUTION_PROBLEM_RESOURCE_TYPE_KEY = "processResolutionProblemResourceType";
public static final String PROCESS_RESOLUTION_PROBLEM_RESOURCE_ID_KEY = "processResolutionProblemResourceId";
public static final String PROCESS_RESOLUTION_PROBLEM_DESCRIPTION_KEY = "processResolutionProblemDescription";
public static final String PROCESS_DEPLOYMENT_FAILURE_REASON_KEY = "processVersion";
public static final String PAGE_NAME_KEY = "pageName";
public StatusContext() {
super();
}
public StatusContext(Map context) {
super(context);
}
}