Sync Integ to Master
[sdc.git] / test-apis-ci / src / main / java / org / openecomp / sdc / ci / tests / datatypes / VendorSoftwareProductObject.java
1 package org.openecomp.sdc.ci.tests.datatypes;
2
3 public class VendorSoftwareProductObject extends VendorSoftwareProductObjectReqDetails {
4
5         private String vspId;
6         private String componentId;
7         private String attContact;
8         private String version;
9
10         public VendorSoftwareProductObject(){super();}
11
12         public VendorSoftwareProductObject(String vspId, String componentId, String attContact, String version) {
13                 this.vspId = vspId;
14                 this.componentId = componentId;
15                 this.attContact = attContact;
16                 this.version = version;
17         }
18
19         public VendorSoftwareProductObject(String name, String description, String category, String subCategory, String vendorId, String vendorName, String licensingVersion, LicensingData licensingData, String onboardingMethod, String networkPackageName, String onboardingOrigin, String icon, String vspId, String componentId, String attContact, String version) {
20                 super(name, description, category, subCategory, vendorId, vendorName, licensingVersion, licensingData, onboardingMethod, networkPackageName, onboardingOrigin, icon);
21                 this.vspId = vspId;
22                 this.componentId = componentId;
23                 this.attContact = attContact;
24                 this.version = version;
25         }
26
27         public String getVspId() {
28                 return vspId;
29         }
30
31         public void setVspId(String vspId) {
32                 this.vspId = vspId;
33         }
34
35         public String getComponentId() {
36                 return componentId;
37         }
38
39         public void setComponentId(String componentId) {
40                 this.componentId = componentId;
41         }
42
43         public String getAttContact() {
44                 return attContact;
45         }
46
47         public void setAttContact(String attContact) {
48                 this.attContact = attContact;
49         }
50
51         public String getVersion() {
52                 return version;
53         }
54
55         public void setVersion(String version) {
56                 this.version = version;
57         }
58
59         @Override
60         public String toString() {
61                 return "VendorSoftwareProductObject{" +
62                                 "vspId='" + vspId + '\'' +
63                                 ", componentId='" + componentId + '\'' +
64                                 ", attContact='" + attContact + '\'' +
65                                 ", version='" + version + '\'' +
66                                 '}';
67         }
68 }