- Timestamp:
- 10/09/13 17:35:41 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/supervisor/src/main/java/omq/common/broker/HasObject.java
r91 r100 12 12 private String reference; 13 13 private boolean hasObject; 14 private int numThreads; 14 15 15 public HasObject(String brokerName, String reference, boolean hasObject ) {16 public HasObject(String brokerName, String reference, boolean hasObject, int numThreads) { 16 17 this.brokerName = brokerName; 17 18 this.reference = reference; 18 19 this.hasObject = hasObject; 20 this.numThreads = numThreads; 19 21 } 20 22 … … 43 45 } 44 46 47 public int getNumThreads() { 48 return numThreads; 49 } 50 51 public void setNumThreads(int numThreads) { 52 this.numThreads = numThreads; 53 } 54 45 55 }
Note: See TracChangeset
for help on using the changeset viewer.