1 17 package org.apache.sandesha; 18 19 25 public class RMReport { 26 27 private boolean allAcked; 28 private int returns; 29 private String error; 30 31 public String getError() { 32 return error; 33 } 34 35 public void setError(String error) { 36 this.error = error; 37 } 38 39 public boolean isAllAcked() { 40 return this.allAcked; 41 } 42 43 public int getNumberOfReturnMessages() { 44 return this.returns; 45 } 46 47 public void setAllAcked(boolean acked) { 48 this.allAcked = acked; 49 } 50 51 public void setNoOfReturmMessages(int n) { 52 this.returns = n; 53 } 54 55 public void incrementReturnedMsgCount() { 56 this.returns++; 57 } 58 59 } 60 | Popular Tags |