summaryrefslogtreecommitdiffstats
path: root/common/src/main/java/org/onap/so/client/graphinventory/entities/ResourceAndUrl.java
blob: e53fc02da76d119593b258e90b415a21d81fe987 (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
package org.onap.so.client.graphinventory.entities;

import org.onap.so.client.graphinventory.GraphInventoryObjectType;

public class ResourceAndUrl<Wrapper extends GraphInventoryResultWrapper> {

	private String url;
	private GraphInventoryObjectType type;
	private Wrapper wrapper;
	
	public ResourceAndUrl(String url, GraphInventoryObjectType type, Wrapper wrapper) {
		this.url = url;
		this.type = type;
		this.wrapper = wrapper;
	}
	public String getUrl() {
		return url;
	}
	public void setUrl(String url) {
		this.url = url;
	}
	public Wrapper getWrapper() {
		return wrapper;
	}
	public void setWrapper(Wrapper wrapper) {
		this.wrapper = wrapper;
	}
	public GraphInventoryObjectType getType() {
		return type;
	}
	
	public void setType(GraphInventoryObjectType type) {
		this.type = type;
	}
	
}