Added oparent to sdc main
[sdc.git] / ui-ci / src / main / java / org / openecomp / sdc / ci / tests / execute / AmdocsComplexService / OnboardItemObject.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
21 package org.openecomp.sdc.ci.tests.execute.AmdocsComplexService;
22
23
24 public class OnboardItemObject extends OnboardItemObjectReqDetails {
25
26     private String itemId;
27     private String name;
28     private String baseId;
29     private String status;
30
31     public OnboardItemObject(){super();}
32
33     public OnboardItemObject(String itemId, String name, String baseId, String status) {
34         this.itemId = itemId;
35         this.name = name;
36         this.baseId = baseId;
37         this.status = status;
38     }
39
40     public String getItemId() {
41         return itemId;
42     }
43
44     public void setItemId(String itemId) {
45         this.itemId = itemId;
46     }
47
48     public String getName() {
49         return name;
50     }
51
52     public void setName(String itemId) {
53         this.name = name;
54     }
55
56     public String getBaseId() {
57         return baseId;
58     }
59
60     public void setBaseId(String baseId) {
61         this.baseId = baseId;
62     }
63
64     public String getStatus() {
65         return status;
66     }
67
68     public void setStatus(String status) {
69         this.status = status;
70     }
71
72     @Override
73     public String toString() {
74         return "OnboardItemObject{" +
75                 "itemId='" + itemId + '\'' +
76                 ", name='" + name + '\'' +
77                 ", baseId='" + baseId + '\'' +
78                 ", status='" + status + '\'' +
79                 '}';
80     }
81 }