Author: indika Date: Tue Dec 2 09:20:41 2008 New Revision: 25545 URL: http://wso2.org/svn/browse/wso2?view=rev&revision=25545
Log: a few JavaDoc Modified: branches/synapse/1.2.wso2v1/modules/utils/src/main/java/org/apache/synapse/commons/util/RMIRegistryController.java Modified: branches/synapse/1.2.wso2v1/modules/utils/src/main/java/org/apache/synapse/commons/util/RMIRegistryController.java URL: http://wso2.org/svn/browse/wso2/branches/synapse/1.2.wso2v1/modules/utils/src/main/java/org/apache/synapse/commons/util/RMIRegistryController.java?rev=25545&r1=25544&r2=25545&view=diff ============================================================================== --- branches/synapse/1.2.wso2v1/modules/utils/src/main/java/org/apache/synapse/commons/util/RMIRegistryController.java (original) +++ branches/synapse/1.2.wso2v1/modules/utils/src/main/java/org/apache/synapse/commons/util/RMIRegistryController.java Tue Dec 2 09:20:41 2008 @@ -78,6 +78,9 @@ } + /** + * Removes all registered RMI registries + */ public void shutDown() { for (String key : registriesCache.keySet()) { @@ -86,6 +89,12 @@ registriesCache.clear(); } + /** + * Helper method to remove a RMI registry instance + * + * @param key The port of the RMI registry to be removed + * @param registry Registry instance + */ private static void removeRegistry(String key, Registry registry) { if (registry != null) { _______________________________________________ Esb-java-dev mailing list [email protected] https://wso2.org/cgi-bin/mailman/listinfo/esb-java-dev
