re base code
[sdc.git] / ui-ci / src / main / java / org / openecomp / sdc / ci / tests / execute / AmdocsComplexService / OnboardItemObjectReqDetails.java
1 package org.openecomp.sdc.ci.tests.execute.AmdocsComplexService;
2
3
4 public class OnboardItemObjectReqDetails {
5
6     private String creationMethod;
7     private String description;
8
9     public OnboardItemObjectReqDetails() {
10     }
11
12     public OnboardItemObjectReqDetails(String creationMethod, String description) {
13         this.creationMethod = creationMethod;
14         this.description = description;
15     }
16
17     public String getCreationMethod() {
18         return creationMethod;
19     }
20
21     public void setCreationMethod(String creationMethod) {
22         this.creationMethod = creationMethod;
23     }
24
25     public String getDescription() {
26         return description;
27     }
28
29     public void setDescription(String description) {
30         this.description = description;
31     }
32
33     @Override
34     public String toString() {
35         return "OnboardItemObjectReqDetails{" +
36                 "creationMethod='" + creationMethod + '\'' +
37                 ", description='" + description + '\'' +
38                 '}';
39     }
40 }