summaryrefslogtreecommitdiffstats
path: root/dcaedt_catalog/service/src/main/java/org/onap/sdc/dcae/catalog/engine/CatalogRequest.java
blob: ad6caca3ad1a5d3dd2b4f11538f18681683aebd2 (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
package org.onap.sdc.dcae.catalog.engine;

import java.net.URI;

import org.onap.sdc.dcae.catalog.engine.CatalogMessage;

public class CatalogRequest extends CatalogMessage {

	private URI		 	catalog;
	private long		timeout = 0;

	public void setCatalog(URI theCatalogUri) {
		this.catalog = theCatalogUri;
	}

	public URI getCatalog() {
		return this.catalog;
	}

	public void setTimeout(long theTimeout) {
		this.timeout = theTimeout;
	}

	public long getTimeout() {
		return this.timeout;
	}
}