setter for max duration

git-svn-id: https://svn.apache.org/repos/asf/incubator/activemq/trunk@478598 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Robert Davies 2006-11-23 15:30:34 +00:00
parent d81997d3eb
commit be6fac15e2
1 changed files with 16 additions and 0 deletions

View File

@ -215,4 +215,20 @@ public class MessageIdList extends Assert implements MessageListener {
this.parent = parent;
}
/**
* @return the maximumDuration
*/
public long getMaximumDuration(){
return this.maximumDuration;
}
/**
* @param maximumDuration the maximumDuration to set
*/
public void setMaximumDuration(long maximumDuration){
this.maximumDuration=maximumDuration;
}
}