Update of /cvsroot/batchserver/batchserver/src/org/jmonks/batchserver/framework/repository
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2591
Modified Files:
Repository.java
Log Message:
no message
Index: Repository.java
===================================================================
RCS file: /cvsroot/batchserver/batchserver/src/org/jmonks/batchserver/framework/repository/Repository.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** Repository.java 22 Mar 2006 14:20:45 -0000 1.3
--- Repository.java 28 Mar 2006 04:56:24 -0000 1.4
***************
*** 201,204 ****
--- 201,213 ----
*/
public abstract boolean unregisterJobMgmtMntrInfo(String jobName);
+
+ /**
+ * Gets all the management and monitoring information registered in the repository
+ * as a map, where jobname represents the key and management and monitoring information as value.
+ *
+ * @return Returns the map contains the job names as keys and management and
+ * monitoring information as values.
+ */
+ public abstract Map getAllRegisteredMgmtMntrInfo();
/**
|