blob: 9330185763314f06c8311fd1ef9bac0a762830c1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
package pl.edu.mimuw.cloudatlas.agent.messages;
import pl.edu.mimuw.cloudatlas.model.ValueTime;
public class RemoveZMIMessage extends StanikMessage {
private String pathName;
private ValueTime removalTimestamp;
public RemoveZMIMessage(String messageId, long timestamp, String pathName, ValueTime removalTimestamp) {
super(messageId, timestamp, Type.REMOVE_ZMI);
this.pathName = pathName;
this.removalTimestamp = removalTimestamp;
}
public String getPathName() {
return pathName;
}
public ValueTime getRemovalTimestamp() {
return removalTimestamp;
}
}
|