Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Source code: org/activemq/store/journal/JournalAck.java


1   package org.activemq.store.journal;
2   
3   public class JournalAck {
4   
5   
6       private String destination;
7       private String subscription;
8       private String messageId;
9       private Object transactionId;
10  
11  
12      public JournalAck(String destination, String subscription, String messageId, Object transactionId) {
13          this.destination = destination;
14          this.subscription = subscription;
15          this.messageId = messageId;
16          this.transactionId = transactionId;
17      }
18  
19  
20      public String getDestination() {
21          return destination;
22      }
23  
24  
25      public void setDestination(String destination) {
26          this.destination = destination;
27      }
28  
29  
30      public String getMessageId() {
31          return messageId;
32      }
33  
34  
35      public void setMessageId(String messageId) {
36          this.messageId = messageId;
37      }
38  
39  
40      public String getSubscription() {
41          return subscription;
42      }
43  
44  
45      public void setSubscription(String subscription) {
46          this.subscription = subscription;
47      }
48  
49  
50      public Object getTransactionId() {
51          return transactionId;
52      }
53  
54  
55      public void setTransactionId(Object transactionId) {
56          this.transactionId = transactionId;
57      }
58  
59  
60  
61  }