[SDC-29] catalog 1707 rebase commit.
[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         public static final String ARTIFACT_KEYSPACE = "sdcartifact";
26         public static final String AUDIT_KEYSPACE = "sdcaudit";
27         public static final String COMPONENT_KEYSPACE = "sdccomponent";
28         public static final String TITAN_KEYSPACE = "titan";
29
30         public static final String USER_ADMIN_EVENT_TYPE = "useradminevent";
31         public static final String USER_ACCESS_EVENT_TYPE = "useraccessevent";
32         public static final String RESOURCE_ADMIN_EVENT_TYPE = "resourceadminevent";
33         public static final String DISTRIBUTION_DOWNLOAD_EVENT_TYPE = "distributiondownloadevent";
34
35         public static final String DISTRIBUTION_ENGINE_EVENT_TYPE = "distributionengineevent";
36         public static final String DISTRIBUTION_NOTIFICATION_EVENT_TYPE = "distributionnotificationevent";
37         public static final String DISTRIBUTION_STATUS_EVENT_TYPE = "distributionstatusevent";
38         public static final String DISTRIBUTION_DEPLOY_EVENT_TYPE = "distributiondeployevent";
39         public static final String DISTRIBUTION_GET_UEB_CLUSTER_EVENT_TYPE = "auditinggetuebclusterevent";
40         public static final String DISTRIBUTION_GET_VALID_ARTIFACT_TYPES_EVENT_TYPE = "auditinggetvalidartifacttypesevent";
41
42         public static final String AUTH_EVENT_TYPE = "authevent";
43         public static final String CONSUMER_EVENT_TYPE = "consumerevent";
44         public static final String CATEGORY_EVENT_TYPE = "categoryevent";
45         public static final String GET_USERS_LIST_EVENT_TYPE = "getuserslistevent";
46         public static final String GET_CATEGORY_HIERARCHY_EVENT_TYPE = "getcategoryhierarchyevent";
47         public static final String EXTERNAL_API_EVENT_TYPE = "externalapievent";
48
49 }