/* * Copyright 2004-2015 the Seasar Foundation and the Others. * * Licensed 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.seasar.extension.jdbc.gen.internal.util; import org.seasar.framework.container.factory.SingletonS2ContainerFactory; /** * {@link SingletonS2ContainerFactory}の初期化と破棄をサポートするクラスです。 * * @author taedium */ public class SingletonS2ContainerFactorySupport { /** 設定ファイルのパス */ protected String configPath; /** 環境名 */ protected String env; /** 元の環境名 */ protected String originalEnv; /** 初期化された場合{@code true} */ protected boolean initialized; /** * インスタンスを構築します。 * * @param configPath * 設定ファイルのパス * @param env * 環境名 */ public SingletonS2ContainerFactorySupport(String configPath, String env) { this.configPath = configPath; this.env = env; } /** * 初期化します。 */ public void init() { if (!SingletonS2ContainerFactory.hasContainer()) { initialized = true; originalEnv = EnvUtil.getValue(); EnvUtil.setValue(env); SingletonS2ContainerFactory.setConfigPath(configPath); SingletonS2ContainerFactory.init(); } } /** * 破棄します。 */ public void destory() { if (initialized) { SingletonS2ContainerFactory.destroy(); EnvUtil.setValue(originalEnv); } } }