- Timestamp:
- 10/18/13 16:09:36 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/supervisor/src/main/java/omq/server/RemoteObject.java
r105 r106 31 31 32 32 private String reference; 33 private String UID; 33 34 private Properties env; 34 35 private transient Broker broker; … … 83 84 pool = new RemoteThreadPool(minPoolThreads, maxPoolThreads, refresh, keepAliveTime, maxMessagesPerThread, this, broker); 84 85 pool.start(); 86 } 87 88 public void startRemoteObject(String reference, String UID, Broker broker, Properties env) throws Exception { 89 this.UID = UID; 90 startRemoteObject(reference, broker, env); 85 91 } 86 92 … … 209 215 } 210 216 217 public String getUID() { 218 return UID; 219 } 220 221 public void setUID(String uID) { 222 UID = uID; 223 } 224 211 225 }
Note: See TracChangeset
for help on using the changeset viewer.