Added oparent to sdc main
[sdc.git] / openecomp-be / lib / openecomp-item-permissions-lib / openecomp-item-permissions-api / src / main / java / org / openecomp / sdc / itempermissions / type / ItemPermissionsEntity.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2019 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 package org.openecomp.sdc.itempermissions.type;
21
22 import com.datastax.driver.mapping.annotations.ClusteringColumn;
23 import com.datastax.driver.mapping.annotations.Column;
24 import com.datastax.driver.mapping.annotations.PartitionKey;
25 import com.datastax.driver.mapping.annotations.Table;
26
27 /**
28  * Created by ayalaben on 6/18/2017.
29  */
30
31 @Table(keyspace = "dox", name = "item_permissions")
32 public class ItemPermissionsEntity {
33
34   @PartitionKey
35   @Column(name = "item_id")
36   private String itemId;
37
38   @ClusteringColumn
39   @Column(name = "user_id")
40   private String userId;
41
42   @Column(name = "permission")
43   private String permission;
44
45
46   public String getItemId() {
47     return itemId;
48   }
49
50   public void setItemId(String itemId) {
51     this.itemId = itemId;
52   }
53
54   public String getUserId() {
55     return userId;
56   }
57
58   public void setUserId(String userId) {
59     this.userId = userId;
60   }
61
62   public String getPermission() {
63     return permission;
64   }
65
66   public void setPermission(String permission) {
67     this.permission = permission;
68   }
69 }