AAI-1523 Batch reformat aai-core
[aai/aai-common.git] / aai-core / src / main / java / org / onap / aai / domain / model / AAIResourceKey.java
1 /**
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 2017-2018 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.onap.aai.domain.model;
22
23 public class AAIResourceKey {
24     private String keyName;
25     private String keyType;
26     private String pathParamName;
27     private String dnCamKeyName;
28
29     /**
30      * Gets the key name.
31      *
32      * @return the key name
33      */
34     public String getKeyName() {
35         return keyName;
36     }
37
38     /**
39      * Sets the key name.
40      *
41      * @param keyName the new key name
42      */
43     public void setKeyName(String keyName) {
44         this.keyName = keyName;
45     }
46
47     /**
48      * Gets the key type.
49      *
50      * @return the key type
51      */
52     public String getKeyType() {
53         return keyType;
54     }
55
56     /**
57      * Sets the key type.
58      *
59      * @param t the new key type
60      */
61     public void setKeyType(String t) {
62         this.keyType = t;
63     }
64
65     /**
66      * Gets the path param name.
67      *
68      * @return the path param name
69      */
70     public String getPathParamName() {
71         return pathParamName;
72     }
73
74     /**
75      * Sets the path param name.
76      *
77      * @param pathParamName the new path param name
78      */
79     public void setPathParamName(String pathParamName) {
80         this.pathParamName = pathParamName;
81     }
82
83     /**
84      * Gets the dn cam key name.
85      *
86      * @return the dn cam key name
87      */
88     public String getDnCamKeyName() {
89         return dnCamKeyName;
90     }
91
92     /**
93      * Sets the dn cam key name.
94      *
95      * @param dnCamKeyName the new dn cam key name
96      */
97     public void setDnCamKeyName(String dnCamKeyName) {
98         this.dnCamKeyName = dnCamKeyName;
99     }
100
101 }