super.init(manager);
try {
expirationTimeout = Long.valueOf(getMandatoryProperty(this, EXPIRATION_TIMEOUT));
} catch (NumberFormatException e) {
throw new PluginException(e);
}
try {
objnameBundles = ObjectName.getInstance(getMandatoryProperty(this,
PROP_BUNDLES_OBJNAME));
} catch (PluginException e) {
throw e;
} catch (Exception e) {
throw new PluginException(e);
}
try {
objnameFeatures = ObjectName.getInstance(getMandatoryProperty(this,
PROP_FEATURES_OBJNAME));
} catch (PluginException e) {
throw e;
} catch (Exception e) {
throw new PluginException(e);
}
try {
objnameServices = ObjectName.getInstance(getMandatoryProperty(this,
PROP_SERVICES_OBJNAME));
} catch (PluginException e) {
throw e;
} catch (Exception e) {
throw new PluginException(e);
}
}