This commit is contained in:
Manuele Simi 2008-04-14 17:02:23 +00:00
parent e645bf8373
commit cb8c9e3ae1
1 changed files with 3 additions and 3 deletions

View File

@ -13,9 +13,9 @@ public class RegistryConfiguration {
/** The root service to take care at service's startup */
public static enum ROOT_SERVICES {
ISIC() {String getName() {return "InformationSystem";} String getClazz() {return "IS-IC";}},
ISNOTIFIER() {String getName() {return "InformationSystem";} String getClazz() {return "IS-Notifier";}},
GHNMANAGER() {String getName() {return "VREManagement";} String getClazz() {return "GHNManager";}};
ISIC() {String getClazz() {return "InformationSystem";} String getName() {return "IS-IC";}},
ISNOTIFIER() {String getClazz() {return "InformationSystem";} String getName() {return "IS-Notifier";}},
GHNMANAGER() {String getClazz() {return "VREManagement";} String getName() {return "GHNManager";}};
abstract String getName();
abstract String getClazz();