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

public class CatalogMessage {

	private UUID 		id;
	private long 		timestamp = 0;


	public void setId(UUID theId) {
		this.id = theId;
	}

	public UUID getId() {
		return this.id;
	}

	public void setTimestamp(long theTimestamp) {
		this.timestamp = theTimestamp;
	}

	public long getTimestamp() {
		return this.timestamp;
	}

}