summaryrefslogtreecommitdiffstats
path: root/test-apis-ci/src/main/java/org/openecomp/sdc/ci/tests/datatypes/VendorSoftwareProductObject.java
blob: fbdb88e712843c30c05f82182972e865cc3f1176 (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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
package org.openecomp.sdc.ci.tests.datatypes;

public class VendorSoftwareProductObject {

	private String vendorName;
	private String vspId;
	private String category;
	private String subCategory;
	private String componentId;
	private String description;
	private String attContact;
	private String vspName;
	
	public VendorSoftwareProductObject() {
		super();
		// TODO Auto-generated constructor stub
	}

	public VendorSoftwareProductObject(String vendorName, String vspId, String category, String subCategory, String componentId, String description, String attContact) {
		super();
		this.vendorName = vendorName;
		this.vspId = vspId;
		this.category = category;
		this.subCategory = subCategory;
		this.componentId = componentId;
		this.description = description;
		this.attContact = attContact;
	}

	
	public String getVspName() {
		return vspName;
	}

	public void setVspName(String vspName) {
		this.vspName = vspName;
	}

	public String getVendorName() {
		return vendorName;
	}

	public void setVendorName(String vendorName) {
		this.vendorName = vendorName;
	}

	public String getVspId() {
		return vspId;
	}

	public void setVspId(String vspId) {
		this.vspId = vspId;
	}

	public String getCategory() {
		return category;
	}

	public void setCategory(String category) {
		this.category = category;
	}

	public String getSubCategory() {
		return subCategory;
	}

	public void setSubCategory(String subCategory) {
		this.subCategory = subCategory;
	}

	public String getComponentId() {
		return componentId;
	}

	public void setComponentId(String componentId) {
		this.componentId = componentId;
	}

	public String getDescription() {
		return description;
	}

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

	public String getAttContact() {
		return attContact;
	}

	public void setAttContact(String attContact) {
		this.attContact = attContact;
	}

	@Override
	public String toString() {
		return "VendorSoftwareProductObject [vendorName=" + vendorName + ", vspId=" + vspId + ", category=" + category + ", subCategory=" + subCategory + ", componentId=" + componentId + ", description=" + description + ", attContact="
				+ attContact + "]";
	}
	
	
}