net.sourceforge.msscodefactory.cfcrm.v2_0.CFCrmMssCF.CFCrmMssCFBindISOCurrencyId.java Source code

Java tutorial

Introduction

Here is the source code for net.sourceforge.msscodefactory.cfcrm.v2_0.CFCrmMssCF.CFCrmMssCFBindISOCurrencyId.java

Source

// Description: Java7 MSSCodeFactory Binding for ISOCurrency Column Id.

/*
 *   CF Customer Relations Management model
 *
 *   Copyright (c) 2010-2014 Mark Sobkow
 *   
 *      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.
 *   
 * ***********************************************************************
 *
 *   Author:   $Author$
 */

package net.sourceforge.msscodefactory.cfcrm.v2_0.CFCrmMssCF;

import java.math.*;
import java.sql.*;
import java.util.*;
import net.sourceforge.msscodefactory.cflib.v1_11.CFLib.*;
import net.sourceforge.msscodefactory.cfcore.v1_11.MssCF.*;
import org.apache.commons.codec.binary.Base64;
import net.sourceforge.msscodefactory.cfcrm.v2_0.CFCrmObj.*;

/**
 *   CFCrmMssCFBindISOCurrencyId binds ISOCurrency.Id
 *   as an instance of MssCFGenBindObj.
 */
public class CFCrmMssCFBindISOCurrencyId extends MssCFGenBindObj {
    private static final long serialVersionUID = 1L;

    public CFCrmMssCFBindISOCurrencyId() {
        super();
    }

    public CFCrmMssCFBindISOCurrencyId(MssCFEngine argEngine) {
        super(argEngine, "any", null, "ISOCurrency", "Id");
    }

    public Object getValueObject(MssCFGenContext genContext) {
        final String S_ProcName = "CFCrmMssCFBindISOCurrencyId.getValueObject() ";

        if (genContext == null) {
            throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), "expandBody", 1,
                    "genContext");
        }

        ICFLibAnyObj genDef = genContext.getGenDef();
        if (genDef == null) {
            throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), "expandBody", 1,
                    "genContext.getGenDef()");
        }

        short id;
        if (genDef instanceof ICFCrmISOCurrencyObj) {
            id = ((ICFCrmISOCurrencyObj) genDef).getRequiredId();
        } else {
            throw CFLib.getDefaultExceptionFactory().newUnsupportedClassException(getClass(), "expandBody",
                    "genContext.getGenDef()", genDef, "ICFCrmISOCurrencyObj");
        }

        return (id);
    }

    public String expandBody(MssCFGenContext genContext) {
        final String S_ProcName = "CFCrmMssCFBindISOCurrencyId.expandBody() ";

        if (genContext == null) {
            throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), "expandBody", 1,
                    "genContext");
        }

        ICFLibAnyObj genDef = genContext.getGenDef();
        if (genDef == null) {
            throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), "expandBody", 1,
                    "genContext.getGenDef()");
        }

        String ret;

        if (genDef instanceof ICFCrmISOCurrencyObj) {
            short id = ((ICFCrmISOCurrencyObj) genDef).getRequiredId();
            ret = Short.toString(id);
        } else {
            throw CFLib.getDefaultExceptionFactory().newUnsupportedClassException(getClass(), "expandBody",
                    "genContext.getGenDef()", genDef, "ICFCrmISOCurrencyObj");
        }

        return (ret);
    }

}