Adding naming micro-service code - API.
[ccsdk/apps.git] / ms / neng / src / main / java / org / onap / ccsdk / apps / ms / neng / core / resource / model / NameGenRequest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP : CCSDK.apps
4  * ================================================================================
5  * Copyright (C) 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.ccsdk.apps.ms.neng.core.resource.model;
22
23 import java.io.Serializable;
24 import java.util.List;
25 import java.util.Map;
26
27 /**
28  * POJO representing the request from the client.
29  */
30 public class NameGenRequest implements Serializable {
31     private static final long serialVersionUID = -8039686696076337053L;
32
33     List<Map<String, String>> elements;
34     Boolean useDb;
35
36     public List<Map<String, String>> getElements() {
37         return elements;
38     }
39
40     public void setElements(List<Map<String, String>> elements) {
41         this.elements = elements;
42     }
43
44     public Boolean getUseDb() {
45         return useDb;
46     }
47
48     public void setUseDb(Boolean useDb) {
49         this.useDb = useDb;
50     }
51
52     /**
53      * Gives a readable representation of this object.
54      */
55     public String toString() {
56         StringBuffer buf = new StringBuffer();
57         buf.append("elements: " + this.elements);
58         return buf.toString();
59     }
60 }