Catalog alignment
[sdc.git] / catalog-dao / src / main / java / org / openecomp / sdc / be / resources / data / auditing / AuditingTypesConstants.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.openecomp.sdc.be.resources.data.auditing;
22
23 public interface AuditingTypesConstants {
24
25     String ARTIFACT_KEYSPACE = "sdcartifact";
26     String REPO_KEYSPACE = "sdcrepository";
27     String AUDIT_KEYSPACE = "sdcaudit";
28     String COMPONENT_KEYSPACE = "sdccomponent";
29     String janusGraph_KEYSPACE = "janusgraph";
30
31     String USER_ADMIN_EVENT_TYPE = "useradminevent";
32     String USER_ACCESS_EVENT_TYPE = "useraccessevent";
33     String RESOURCE_ADMIN_EVENT_TYPE = "resourceadminevent";
34     String DISTRIBUTION_DOWNLOAD_EVENT_TYPE = "distributiondownloadevent";
35
36     String DISTRIBUTION_ENGINE_EVENT_TYPE = "distributionengineevent";
37     String DISTRIBUTION_NOTIFICATION_EVENT_TYPE = "distributionnotificationevent";
38     String DISTRIBUTION_STATUS_EVENT_TYPE = "distributionstatusevent";
39     String DISTRIBUTION_DEPLOY_EVENT_TYPE = "distributiondeployevent";
40     String DISTRIBUTION_GET_UEB_CLUSTER_EVENT_TYPE = "auditinggetuebclusterevent";
41     //TODO remove if not in use
42     String DISTRIBUTION_GET_VALID_ARTIFACT_TYPES_EVENT_TYPE = "auditinggetvalidartifacttypesevent";
43
44     String ECOMP_OPERATIONAL_ENV_EVENT_TYPE = "ecompopenvironmentevent";
45     String AUTH_EVENT_TYPE = "authevent";
46     String CONSUMER_EVENT_TYPE = "consumerevent";
47     String CATEGORY_EVENT_TYPE = "categoryevent";
48     String GET_USERS_LIST_EVENT_TYPE = "getuserslistevent";
49     String GET_CATEGORY_HIERARCHY_EVENT_TYPE = "getcategoryhierarchyevent";
50     String EXTERNAL_API_EVENT_TYPE = "externalapievent";
51     String ENVIRONMENT_ENGINE_EVENT_TYPE = "environmentengineevent";
52     String FEATURE_TOGGLE_STATE = "featuretogglestate";
53
54 }