com.vangent.hieos.empi.config.AccountNumberTreatmentConfig.java Source code

Java tutorial

Introduction

Here is the source code for com.vangent.hieos.empi.config.AccountNumberTreatmentConfig.java

Source

/*
 * This code is subject to the HIEOS License, Version 1.0
 *
 * Copyright(c) 2013 Vangent, Inc.  All rights reserved.
 *
 * 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 com.vangent.hieos.empi.config;

import com.vangent.hieos.empi.exception.EMPIException;
import org.apache.commons.configuration.HierarchicalConfiguration;

/**
 *
 * @author Bernie Thuman
 */
public class AccountNumberTreatmentConfig implements ConfigItem {

    private static String DEFAULT_UNIVERSAL_ID = "default-universal-id";
    private String defaultUniversalId;

    /**
     * 
     * @return
     */
    public String getDefaultUniversalId() {
        return defaultUniversalId;
    }

    /**
     *
     * @param hc
     * @param empiConfig
     * @throws EMPIException
     */
    public void load(HierarchicalConfiguration hc, EMPIConfig empiConfig) throws EMPIException {
        defaultUniversalId = hc.getString(DEFAULT_UNIVERSAL_ID);
    }
}