summaryrefslogtreecommitdiffstats
path: root/ui-ci/src/main/java/org/openecomp/sdc/ci/tests/execute/AmdocsComplexService/OnboardItemObjectReqDetails.java
blob: 8ce36c3b97976723afcc9d1fbd13c816e5753883 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
package org.openecomp.sdc.ci.tests.execute.AmdocsComplexService;


public class OnboardItemObjectReqDetails {

    private String creationMethod;
    private String description;

    public OnboardItemObjectReqDetails() {
    }

    public OnboardItemObjectReqDetails(String creationMethod, String description) {
        this.creationMethod = creationMethod;
        this.description = description;
    }

    public String getCreationMethod() {
        return creationMethod;
    }

    public void setCreationMethod(String creationMethod) {
        this.creationMethod = creationMethod;
    }

    public String getDescription() {
        return description;
    }

    public void setDescription(String description) {
        this.description = description;
    }

    @Override
    public String toString() {
        return "OnboardItemObjectReqDetails{" +
                "creationMethod='" + creationMethod + '\'' +
                ", description='" + description + '\'' +
                '}';
    }
}