AT&T 1712 and 1802 release code
[so.git] / adapters / mso-adapters-rest-interface / src / main / java / org / openecomp / mso / openstack / beans / Pool.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
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.mso.openstack.beans;
22
23
24
25 import javax.xml.bind.annotation.XmlAccessType;
26 import javax.xml.bind.annotation.XmlAccessorType;
27 import javax.xml.bind.annotation.XmlType;
28
29 @XmlAccessorType(XmlAccessType.FIELD)
30 @XmlType(name = "", propOrder = {
31     "start",
32     "end"
33 })
34 public class Pool {
35
36         private String start;
37         private String end;
38
39         /**
40          * @return the start
41          */
42         public String getStart() {
43                 return start;
44         }
45         /**
46          * @param start the start to set
47          */
48         public void setStart(String start) {
49                 this.start = start;
50         }
51         /**
52          * @return the end
53          */
54         public String getEnd() {
55                 return end;
56         }
57         /**
58          * @param end the end to set
59          */
60         public void setEnd(String end) {
61                 this.end = end;
62         }
63
64         @Override
65         public String toString() {
66                 return "Allocation_pool [start=" + start + ", end=" + end + "]";
67         }
68
69 }