From cdcb7d254658aa1463d49ed2360200fd6e905435 Mon Sep 17 00:00:00 2001 From: prabathabey Date: Thu, 21 May 2015 19:49:41 +0530 Subject: [PATCH] Fixing build failures --- .../authenticator/framework/DataHolder.java | 36 +++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 components/webapp-authenticator-framework/org.wso2.carbon.webapp.authenticator.framework/src/main/java/org/wso2/carbon/webapp/authenticator/framework/DataHolder.java diff --git a/components/webapp-authenticator-framework/org.wso2.carbon.webapp.authenticator.framework/src/main/java/org/wso2/carbon/webapp/authenticator/framework/DataHolder.java b/components/webapp-authenticator-framework/org.wso2.carbon.webapp.authenticator.framework/src/main/java/org/wso2/carbon/webapp/authenticator/framework/DataHolder.java new file mode 100644 index 0000000000..ca36310fbf --- /dev/null +++ b/components/webapp-authenticator-framework/org.wso2.carbon.webapp.authenticator.framework/src/main/java/org/wso2/carbon/webapp/authenticator/framework/DataHolder.java @@ -0,0 +1,36 @@ +/* + * Copyright (c) 2015, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. + * + * WSO2 Inc. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + * + */ +package org.wso2.carbon.webapp.authenticator.framework; + +public class DataHolder { + + private static WebappAuthenticatorRepository repository; + + private DataHolder() {} + + public static void setWebappAuthenticatorRepository (WebappAuthenticatorRepository repository) { + DataHolder.repository = repository; + } + + public static WebappAuthenticatorRepository getWebappAuthenticatorRepository() { + return repository; + } + + +}