Merge pull request #520 from madhawap/release-2.0.x

fix to WebappPublisherConfig
revert-70aa11f8
Rasika Perera 8 years ago committed by GitHub
commit bc93d48927

@ -42,6 +42,7 @@ public class WebappPublisherConfig {
private boolean isPublished;
private boolean isEnabledUpdateApi;
private Profiles profiles;
private static boolean isInitialized = false;
private static WebappPublisherConfig config;
@ -52,9 +53,13 @@ public class WebappPublisherConfig {
}
public static WebappPublisherConfig getInstance() {
if (config == null) {
throw new InvalidConfigurationStateException("Webapp Authenticator Configuration is not " +
"initialized properly");
if (!isInitialized) {
try {
init();
} catch (WebappPublisherConfigurationFailedException e) {
throw new InvalidConfigurationStateException("Webapp Authenticator Configuration is not " +
"initialized properly");
}
}
return config;
}
@ -95,7 +100,10 @@ public class WebappPublisherConfig {
this.profiles = profiles;
}
public static void init() throws WebappPublisherConfigurationFailedException {
public synchronized static void init() throws WebappPublisherConfigurationFailedException {
if (isInitialized) {
return;
}
try {
File emailSenderConfig = new File(WEBAPP_PUBLISHER_CONFIG_PATH);
Document doc = WebappPublisherUtil.convertToDocument(emailSenderConfig);
@ -105,6 +113,7 @@ public class WebappPublisherConfig {
Unmarshaller unmarshaller = ctx.createUnmarshaller();
//unmarshaller.setSchema(getSchema());
config = (WebappPublisherConfig) unmarshaller.unmarshal(doc);
isInitialized = true;
} catch (JAXBException e) {
throw new WebappPublisherConfigurationFailedException("Error occurred while un-marshalling Webapp " +
"Publisher Config", e);

Loading…
Cancel
Save