m-chrzan.xyz
aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/pl/edu/mimuw/cloudatlas/agent/messages/UDUPMessage.java
blob: 335d6fe4c5904067a27a31f026939c48d775d0b0 (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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
package pl.edu.mimuw.cloudatlas.agent.messages;

import pl.edu.mimuw.cloudatlas.agent.modules.Module;
import pl.edu.mimuw.cloudatlas.agent.modules.ModuleType;
import pl.edu.mimuw.cloudatlas.model.ValueContact;

public class UDUPMessage extends AgentMessage {
    private ValueContact contact;
    private AgentMessage content;
    private int retry;
    private String conversationId;

    public UDUPMessage(String messageId, long timestamp, ValueContact contact, AgentMessage content, int retry, String conversationId) {
        super(messageId, ModuleType.UDP, timestamp);
        this.contact = contact;
        this.content = content;
        this.retry = retry;
        this.conversationId = conversationId;
    }

    public UDUPMessage(String messageId, ValueContact contact, AgentMessage content, int retry, String conversationId) {
        super(messageId, ModuleType.UDP);
        this.contact = contact;
        this.content = content;
        this.retry = retry;
        this.conversationId = conversationId;
    }

    @Override
    public void callMe(Module module) throws InterruptedException, Module.InvalidMessageType {
        module.handleTyped(this);
    }

    public AgentMessage getContent() {
        return content;
    }

    public void setContent(AgentMessage content) {
        this.content = content;
    }

    public int getRetry() {
        return retry;
    }

    public String getConversationId() {
        return conversationId;
    }

    public void setRetry(int retry) { this.retry = retry; }

    public ValueContact getContact() { return contact; }

    public void setContact(ValueContact contact) {
        this.contact = contact;
    }

    public void setConversationId(String conversationId) {
        this.conversationId = conversationId;
    }
}