summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/onap/dcae/ci/entities/sdc/SdcResource.java
blob: 8cd56059ad9ebeaebf21b4714c661eea5bd543d0 (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
package org.onap.dcae.ci.entities.sdc;


public class SdcResource extends SdcComponent {

	private String vendorName;
	private String vendorRelease;


	public String getVendorName() {
		return vendorName;
	}

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

	public String getVendorRelease() {
		return vendorRelease;
	}

	public void setVendorRelease(String vendorRelease) {
		this.vendorRelease = vendorRelease;
	}

}