Deadlock detection by owner
[music.git] / src / main / java / org / onap / music / rest / Application.java
1 /*
2  * ============LICENSE_START==========================================
3  * org.onap.music
4  * ===================================================================
5  *  Copyright (c) 2017 AT&T Intellectual Property
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  * 
19  * ============LICENSE_END=============================================
20  * ====================================================================
21  */
22
23 package org.onap.music.rest;
24
25 public class Application {
26
27     private String application_name;
28     private String username;
29     private String password;
30     private String keyspace_name;
31     private boolean is_aaf;
32     private String uuid;
33     private boolean is_api;
34     
35     public String getApplication_name() {
36         return application_name;
37     }
38     public void setApplication_name(String application_name) {
39         this.application_name = application_name;
40     }
41     public String getUsername() {
42         return username;
43     }
44     public void setUsername(String username) {
45         this.username = username;
46     }
47     public String getPassword() {
48         return password;
49     }
50     public void setPassword(String password) {
51         this.password = password;
52     }
53     public String getKeyspace_name() {
54         return keyspace_name;
55     }
56     public void setKeyspace_name(String keyspace_name) {
57         this.keyspace_name = keyspace_name;
58     }
59     public boolean isIs_aaf() {
60         return is_aaf;
61     }
62     public void setIs_aaf(boolean is_aaf) {
63         this.is_aaf = is_aaf;
64     }
65     public String getUuid() {
66         return uuid;
67     }
68     public void setUuid(String uuid) {
69         this.uuid = uuid;
70     }
71     public boolean getIs_api() {
72         return is_api;
73     }
74     public void setIs_api(boolean is_api) {
75         this.is_api = is_api;
76     }
77     
78     
79 }