net.sourceforge.msscodefactory.cfacc.v2_0.CFAccXMsgClient.CFAccXMsgClientSecGroupMemberTable.java Source code

Java tutorial

Introduction

Here is the source code for net.sourceforge.msscodefactory.cfacc.v2_0.CFAccXMsgClient.CFAccXMsgClientSecGroupMemberTable.java

Source

// Description: Java 7 XMsg Client DbIO implementation for SecGroupMember.

/*
 *   MSS Code Factory Accounting Business Application Model
 *
 *   Copyright (c) 2014 Mark Sobkow
 *   
 *   This program is available as free software under the GNU GPL v3, or
 *   under a commercial license from Mark Sobkow.  For commercial licensing
 *   details, please contact msobkow@sasktel.net.
 *   
 *   Under the terms of the GPL:
 *   
 *      This program is free software: you can redistribute it and/or modify
 *      it under the terms of the GNU General Public License as published by
 *      the Free Software Foundation, either version 3 of the License, or
 *      (at your option) any later version.
 *     
 *      This program is distributed in the hope that it will be useful,
 *      but WITHOUT ANY WARRANTY; without even the implied warranty of
 *      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *      GNU General Public License for more details.
 *     
 *      You should have received a copy of the GNU General Public License
 *      along with this program.  If not, see <http://www.gnu.org/licenses/>.
 *   
 *      This source code incorporates modified modules originally licensed
 *      under the Apache 2.0 license by MSS Code Factory including CFSecurity
 *      (net-sourceforge-msscodefactory-2.0-cfsecurity.xml),
 *      CFInternet (net-sourceforge-msscodefactory-2.0-cfinternet.xml), and
 *      CFCrm 2.0 (net-sourceforge-msscodefactory-2.0-cfcrm.xml), with all of the
 *      required models being available as part of the MSS Code Factory 1.11
 *      distribution source and install zips.
 *   
 *      You can download installations of MSS Code Factory 1.11 from
 *      http://msscodefactory.sourceforge.net/
 *   
 * ***********************************************************************
 *
 *   Code manufactured by MSS Code Factory
 */

package net.sourceforge.msscodefactory.cfacc.v2_0.CFAccXMsgClient;

import java.math.*;
import java.sql.*;
import java.text.*;
import java.util.*;
import net.sourceforge.msscodefactory.cflib.v1_11.CFLib.*;
import org.apache.commons.codec.binary.Base64;
import net.sourceforge.msscodefactory.cfacc.v2_0.CFAcc.*;
import net.sourceforge.msscodefactory.cfacc.v2_0.CFAccObj.*;
import net.sourceforge.msscodefactory.cfacc.v2_0.CFAccXMsg.*;
import net.sourceforge.msscodefactory.cfacc.v2_0.CFAccXMsgRspnHandler.*;

/*
 *   CFAccXMsgClientSecGroupMemberTable XMsg Client DbIO implementation
 *   for SecGroupMember.
 */
public class CFAccXMsgClientSecGroupMemberTable implements ICFAccSecGroupMemberTable {
    private CFAccXMsgClientSchema schema;

    public CFAccXMsgClientSecGroupMemberTable(CFAccXMsgClientSchema argSchema) {
        schema = argSchema;
    }

    public void createSecGroupMember(CFAccAuthorization Authorization, CFAccSecGroupMemberBuff Buff) {
        final String S_ProcName = "createSecGroupMember";
        String rqst = CFAccXMsgSchemaMessageFormatter.formatRqstXmlPreamble() + "\n" + "\t"
                + CFAccXMsgSecGroupMemberMessageFormatter.formatSecGroupMemberRqstCreate("\n\t\t\t", Buff) + "\n"
                + CFAccXMsgSchemaMessageFormatter.formatRqstXmlPostamble();
        String rspn = schema.sendReceive(Authorization, rqst);
        if ((rspn == null) || (rspn.length() <= 0)) {
            throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 0, "rspn");
        }
        CFAccXMsgRspnHandler responseHandler = schema.getResponseHandler();
        responseHandler.parseStringContents(rspn);
        CFLibRuntimeException exceptionRaised = responseHandler.getExceptionRaised();
        if (exceptionRaised != null) {
            throw exceptionRaised;
        }
        Object lastObjectProcessed = responseHandler.getLastObjectProcessed();
        if (lastObjectProcessed != null) {
            ICFAccSecGroupMemberObj realized = null;
            if (lastObjectProcessed instanceof ICFAccSecGroupMemberObj) {
                realized = (ICFAccSecGroupMemberObj) lastObjectProcessed;
            } else {
                throw CFLib.getDefaultExceptionFactory().newUnsupportedClassException(getClass(), S_ProcName,
                        "lastObjectProcessed", lastObjectProcessed, "ICFAccSecGroupMemberObj");
            }
            if (realized != null) {
                Buff.set(realized.getSecGroupMemberBuff());
            }
        } else {
            throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 0,
                    "responseHandler.getLastObjectProcessed()");
        }
    }

    public CFAccSecGroupMemberBuff readDerived(CFAccAuthorization Authorization, CFAccSecGroupMemberPKey PKey) {
        final String S_ProcName = "readDerived";
        String rqst = CFAccXMsgSchemaMessageFormatter.formatRqstXmlPreamble() + "\n" + "\t"
                + CFAccXMsgSecGroupMemberMessageFormatter.formatSecGroupMemberRqstRead("\n\t\t\t", PKey) + "\n"
                + CFAccXMsgSchemaMessageFormatter.formatRqstXmlPostamble();
        String rspn = schema.sendReceive(Authorization, rqst);
        if ((rspn == null) || (rspn.length() <= 0)) {
            throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 0, "rspn");
        }
        CFAccXMsgRspnHandler responseHandler = schema.getResponseHandler();
        responseHandler.parseStringContents(rspn);
        CFLibRuntimeException exceptionRaised = responseHandler.getExceptionRaised();
        if (exceptionRaised != null) {
            throw exceptionRaised;
        }
        CFAccSecGroupMemberBuff buff = null;
        Object lastObjectProcessed = responseHandler.getLastObjectProcessed();
        if (lastObjectProcessed != null) {
            ICFAccSecGroupMemberObj realized = null;
            if (lastObjectProcessed instanceof ICFAccSecGroupMemberObj) {
                realized = (ICFAccSecGroupMemberObj) lastObjectProcessed;
            } else {
                throw CFLib.getDefaultExceptionFactory().newUnsupportedClassException(getClass(), S_ProcName,
                        "lastObjectProcessed", lastObjectProcessed, "ICFAccSecGroupMemberObj");
            }
            if (realized != null) {
                buff = realized.getSecGroupMemberBuff();
            }
        }
        return (buff);
    }

    public CFAccSecGroupMemberBuff lockDerived(CFAccAuthorization Authorization, CFAccSecGroupMemberPKey PKey) {
        final String S_ProcName = "lockDerived";
        String rqst = CFAccXMsgSchemaMessageFormatter.formatRqstXmlPreamble() + "\n" + "\t"
                + CFAccXMsgSecGroupMemberMessageFormatter.formatSecGroupMemberRqstLock("\n\t\t\t", PKey) + "\n"
                + CFAccXMsgSchemaMessageFormatter.formatRqstXmlPostamble();
        String rspn = schema.sendReceive(Authorization, rqst);
        if ((rspn == null) || (rspn.length() <= 0)) {
            throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 0, "rspn");
        }
        CFAccXMsgRspnHandler responseHandler = schema.getResponseHandler();
        responseHandler.parseStringContents(rspn);
        CFLibRuntimeException exceptionRaised = responseHandler.getExceptionRaised();
        if (exceptionRaised != null) {
            throw exceptionRaised;
        }
        CFAccSecGroupMemberBuff buff = null;
        Object lastObjectProcessed = responseHandler.getLastObjectProcessed();
        if (lastObjectProcessed != null) {
            ICFAccSecGroupMemberObj realized = null;
            if (lastObjectProcessed instanceof ICFAccSecGroupMemberObj) {
                realized = (ICFAccSecGroupMemberObj) lastObjectProcessed;
            } else {
                throw CFLib.getDefaultExceptionFactory().newUnsupportedClassException(getClass(), S_ProcName,
                        "lastObjectProcessed", lastObjectProcessed, "ICFAccSecGroupMemberObj");
            }
            if (realized != null) {
                buff = realized.getSecGroupMemberBuff();
            }
        }
        return (buff);
    }

    public CFAccSecGroupMemberBuff[] readAllDerived(CFAccAuthorization Authorization) {
        final String S_ProcName = "readAllDerived";
        String rqst = CFAccXMsgSchemaMessageFormatter.formatRqstXmlPreamble() + "\n" + "\t"
                + CFAccXMsgSecGroupMemberMessageFormatter.formatSecGroupMemberRqstReadAll("\n\t\t\t") + "\n"
                + CFAccXMsgSchemaMessageFormatter.formatRqstXmlPostamble();
        String rspn = schema.sendReceive(Authorization, rqst);
        if ((rspn == null) || (rspn.length() <= 0)) {
            throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 0, "rspn");
        }
        CFAccXMsgRspnHandler responseHandler = schema.getResponseHandler();
        responseHandler.parseStringContents(rspn);
        CFLibRuntimeException exceptionRaised = responseHandler.getExceptionRaised();
        if (exceptionRaised != null) {
            throw exceptionRaised;
        }
        Object sortedMapObj = responseHandler.getSortedMapOfObjects();
        if (sortedMapObj == null) {
            throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 0,
                    "responseHandler.getSortedMapOfObjects");
        }
        SortedMap<CFAccSecGroupMemberPKey, ICFAccSecGroupMemberObj> sortedMap = (SortedMap<CFAccSecGroupMemberPKey, ICFAccSecGroupMemberObj>) sortedMapObj;
        int sz = sortedMap.size();
        CFAccSecGroupMemberBuff arr[] = new CFAccSecGroupMemberBuff[sz];
        Iterator<ICFAccSecGroupMemberObj> iter = sortedMap.values().iterator();
        ICFAccSecGroupMemberObj cur;
        for (int idx = 0; idx < sz; idx++) {
            cur = (ICFAccSecGroupMemberObj) iter.next();
            arr[idx] = cur.getSecGroupMemberBuff();
        }
        return (arr);
    }

    public CFAccSecGroupMemberBuff readDerivedByIdIdx(CFAccAuthorization Authorization, long argClusterId,
            long argSecGroupMemberId) {
        final String S_ProcName = "readDerivedByIdIdx";
        String rqst = CFAccXMsgSchemaMessageFormatter.formatRqstXmlPreamble() + "\n" + "\t"
                + CFAccXMsgSecGroupMemberMessageFormatter.formatSecGroupMemberRqstReadByIdIdx("\n\t\t\t",
                        argClusterId, argSecGroupMemberId)
                + "\n" + CFAccXMsgSchemaMessageFormatter.formatRqstXmlPostamble();
        String rspn = schema.sendReceive(Authorization, rqst);
        if ((rspn == null) || (rspn.length() <= 0)) {
            throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 0, "rspn");
        }
        CFAccXMsgRspnHandler responseHandler = schema.getResponseHandler();
        responseHandler.parseStringContents(rspn);
        CFLibRuntimeException exceptionRaised = responseHandler.getExceptionRaised();
        if (exceptionRaised != null) {
            throw exceptionRaised;
        }
        CFAccSecGroupMemberBuff buff = null;
        Object lastObjectProcessed = responseHandler.getLastObjectProcessed();
        if (lastObjectProcessed != null) {
            ICFAccSecGroupMemberObj realized = null;
            if (lastObjectProcessed instanceof ICFAccSecGroupMemberObj) {
                realized = (ICFAccSecGroupMemberObj) lastObjectProcessed;
            } else {
                throw CFLib.getDefaultExceptionFactory().newUnsupportedClassException(getClass(), S_ProcName,
                        "lastObjectProcessed", lastObjectProcessed, "ICFAccSecGroupMemberObj");
            }
            if (realized != null) {
                buff = realized.getSecGroupMemberBuff();
            }
        }
        return (buff);
    }

    public CFAccSecGroupMemberBuff[] readDerivedByClusterIdx(CFAccAuthorization Authorization, long argClusterId) {
        final String S_ProcName = "readDerivedByClusterIdx";
        String rqst = CFAccXMsgSchemaMessageFormatter.formatRqstXmlPreamble() + "\n" + "\t"
                + CFAccXMsgSecGroupMemberMessageFormatter.formatSecGroupMemberRqstReadByClusterIdx("\n\t\t\t",
                        argClusterId)
                + "\n" + CFAccXMsgSchemaMessageFormatter.formatRqstXmlPostamble();
        String rspn = schema.sendReceive(Authorization, rqst);
        if ((rspn == null) || (rspn.length() <= 0)) {
            throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 0, "rspn");
        }
        CFAccXMsgRspnHandler responseHandler = schema.getResponseHandler();
        responseHandler.parseStringContents(rspn);
        CFLibRuntimeException exceptionRaised = responseHandler.getExceptionRaised();
        if (exceptionRaised != null) {
            throw exceptionRaised;
        }
        Object sortedMapObj = responseHandler.getSortedMapOfObjects();
        if (sortedMapObj == null) {
            throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 0,
                    "responseHandler.getSortedMapOfObjects");
        }
        SortedMap<CFAccSecGroupMemberPKey, ICFAccSecGroupMemberObj> sortedMap = (SortedMap<CFAccSecGroupMemberPKey, ICFAccSecGroupMemberObj>) sortedMapObj;
        int sz = sortedMap.size();
        CFAccSecGroupMemberBuff arr[] = new CFAccSecGroupMemberBuff[sz];
        Iterator<ICFAccSecGroupMemberObj> iter = sortedMap.values().iterator();
        ICFAccSecGroupMemberObj cur;
        for (int idx = 0; idx < sz; idx++) {
            cur = (ICFAccSecGroupMemberObj) iter.next();
            arr[idx] = cur.getSecGroupMemberBuff();
        }
        return (arr);
    }

    public CFAccSecGroupMemberBuff[] readDerivedByGroupIdx(CFAccAuthorization Authorization, long argClusterId,
            int argSecGroupId) {
        final String S_ProcName = "readDerivedByGroupIdx";
        String rqst = CFAccXMsgSchemaMessageFormatter.formatRqstXmlPreamble() + "\n" + "\t"
                + CFAccXMsgSecGroupMemberMessageFormatter.formatSecGroupMemberRqstReadByGroupIdx("\n\t\t\t",
                        argClusterId, argSecGroupId)
                + "\n" + CFAccXMsgSchemaMessageFormatter.formatRqstXmlPostamble();
        String rspn = schema.sendReceive(Authorization, rqst);
        if ((rspn == null) || (rspn.length() <= 0)) {
            throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 0, "rspn");
        }
        CFAccXMsgRspnHandler responseHandler = schema.getResponseHandler();
        responseHandler.parseStringContents(rspn);
        CFLibRuntimeException exceptionRaised = responseHandler.getExceptionRaised();
        if (exceptionRaised != null) {
            throw exceptionRaised;
        }
        Object sortedMapObj = responseHandler.getSortedMapOfObjects();
        if (sortedMapObj == null) {
            throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 0,
                    "responseHandler.getSortedMapOfObjects");
        }
        SortedMap<CFAccSecGroupMemberPKey, ICFAccSecGroupMemberObj> sortedMap = (SortedMap<CFAccSecGroupMemberPKey, ICFAccSecGroupMemberObj>) sortedMapObj;
        int sz = sortedMap.size();
        CFAccSecGroupMemberBuff arr[] = new CFAccSecGroupMemberBuff[sz];
        Iterator<ICFAccSecGroupMemberObj> iter = sortedMap.values().iterator();
        ICFAccSecGroupMemberObj cur;
        for (int idx = 0; idx < sz; idx++) {
            cur = (ICFAccSecGroupMemberObj) iter.next();
            arr[idx] = cur.getSecGroupMemberBuff();
        }
        return (arr);
    }

    public CFAccSecGroupMemberBuff[] readDerivedByUserIdx(CFAccAuthorization Authorization, UUID argSecUserId) {
        final String S_ProcName = "readDerivedByUserIdx";
        String rqst = CFAccXMsgSchemaMessageFormatter.formatRqstXmlPreamble() + "\n" + "\t"
                + CFAccXMsgSecGroupMemberMessageFormatter.formatSecGroupMemberRqstReadByUserIdx("\n\t\t\t",
                        argSecUserId)
                + "\n" + CFAccXMsgSchemaMessageFormatter.formatRqstXmlPostamble();
        String rspn = schema.sendReceive(Authorization, rqst);
        if ((rspn == null) || (rspn.length() <= 0)) {
            throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 0, "rspn");
        }
        CFAccXMsgRspnHandler responseHandler = schema.getResponseHandler();
        responseHandler.parseStringContents(rspn);
        CFLibRuntimeException exceptionRaised = responseHandler.getExceptionRaised();
        if (exceptionRaised != null) {
            throw exceptionRaised;
        }
        Object sortedMapObj = responseHandler.getSortedMapOfObjects();
        if (sortedMapObj == null) {
            throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 0,
                    "responseHandler.getSortedMapOfObjects");
        }
        SortedMap<CFAccSecGroupMemberPKey, ICFAccSecGroupMemberObj> sortedMap = (SortedMap<CFAccSecGroupMemberPKey, ICFAccSecGroupMemberObj>) sortedMapObj;
        int sz = sortedMap.size();
        CFAccSecGroupMemberBuff arr[] = new CFAccSecGroupMemberBuff[sz];
        Iterator<ICFAccSecGroupMemberObj> iter = sortedMap.values().iterator();
        ICFAccSecGroupMemberObj cur;
        for (int idx = 0; idx < sz; idx++) {
            cur = (ICFAccSecGroupMemberObj) iter.next();
            arr[idx] = cur.getSecGroupMemberBuff();
        }
        return (arr);
    }

    public CFAccSecGroupMemberBuff readDerivedByUUserIdx(CFAccAuthorization Authorization, long argClusterId,
            int argSecGroupId, UUID argSecUserId) {
        final String S_ProcName = "readDerivedByUUserIdx";
        String rqst = CFAccXMsgSchemaMessageFormatter.formatRqstXmlPreamble() + "\n" + "\t"
                + CFAccXMsgSecGroupMemberMessageFormatter.formatSecGroupMemberRqstReadByUUserIdx("\n\t\t\t",
                        argClusterId, argSecGroupId, argSecUserId)
                + "\n" + CFAccXMsgSchemaMessageFormatter.formatRqstXmlPostamble();
        String rspn = schema.sendReceive(Authorization, rqst);
        if ((rspn == null) || (rspn.length() <= 0)) {
            throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 0, "rspn");
        }
        CFAccXMsgRspnHandler responseHandler = schema.getResponseHandler();
        responseHandler.parseStringContents(rspn);
        CFLibRuntimeException exceptionRaised = responseHandler.getExceptionRaised();
        if (exceptionRaised != null) {
            throw exceptionRaised;
        }
        CFAccSecGroupMemberBuff buff = null;
        Object lastObjectProcessed = responseHandler.getLastObjectProcessed();
        if (lastObjectProcessed != null) {
            ICFAccSecGroupMemberObj realized = null;
            if (lastObjectProcessed instanceof ICFAccSecGroupMemberObj) {
                realized = (ICFAccSecGroupMemberObj) lastObjectProcessed;
            } else {
                throw CFLib.getDefaultExceptionFactory().newUnsupportedClassException(getClass(), S_ProcName,
                        "lastObjectProcessed", lastObjectProcessed, "ICFAccSecGroupMemberObj");
            }
            if (realized != null) {
                buff = realized.getSecGroupMemberBuff();
            }
        }
        return (buff);
    }

    public CFAccSecGroupMemberBuff readBuff(CFAccAuthorization Authorization, CFAccSecGroupMemberPKey PKey) {
        throw CFLib.getDefaultExceptionFactory().newNotSupportedException(getClass(), "readBuff");
    }

    public CFAccSecGroupMemberBuff lockBuff(CFAccAuthorization Authorization, CFAccSecGroupMemberPKey PKey) {
        throw CFLib.getDefaultExceptionFactory().newNotSupportedException(getClass(), "lockBuff");
    }

    public CFAccSecGroupMemberBuff[] readAllBuff(CFAccAuthorization Authorization) {
        throw CFLib.getDefaultExceptionFactory().newNotSupportedException(getClass(), "readAllBuff");
    }

    public CFAccSecGroupMemberBuff readBuffByIdIdx(CFAccAuthorization Authorization, long argClusterId,
            long argSecGroupMemberId) {
        throw CFLib.getDefaultExceptionFactory().newNotSupportedException(getClass(), "readBuffByIdIdx");
    }

    public CFAccSecGroupMemberBuff[] readBuffByClusterIdx(CFAccAuthorization Authorization, long argClusterId) {
        throw CFLib.getDefaultExceptionFactory().newNotSupportedException(getClass(), "readBuffByClusterIdx");
    }

    public CFAccSecGroupMemberBuff[] readBuffByGroupIdx(CFAccAuthorization Authorization, long argClusterId,
            int argSecGroupId) {
        throw CFLib.getDefaultExceptionFactory().newNotSupportedException(getClass(), "readBuffByGroupIdx");
    }

    public CFAccSecGroupMemberBuff[] readBuffByUserIdx(CFAccAuthorization Authorization, UUID argSecUserId) {
        throw CFLib.getDefaultExceptionFactory().newNotSupportedException(getClass(), "readBuffByUserIdx");
    }

    public CFAccSecGroupMemberBuff readBuffByUUserIdx(CFAccAuthorization Authorization, long argClusterId,
            int argSecGroupId, UUID argSecUserId) {
        throw CFLib.getDefaultExceptionFactory().newNotSupportedException(getClass(), "readBuffByUUserIdx");
    }

    public void updateSecGroupMember(CFAccAuthorization Authorization, CFAccSecGroupMemberBuff Buff) {
        final String S_ProcName = "updateSecGroupMember";
        String rqst = CFAccXMsgSchemaMessageFormatter.formatRqstXmlPreamble() + "\n" + "\t"
                + CFAccXMsgSecGroupMemberMessageFormatter.formatSecGroupMemberRqstUpdate("\n\t\t\t", Buff) + "\n"
                + CFAccXMsgSchemaMessageFormatter.formatRqstXmlPostamble();
        String rspn = schema.sendReceive(Authorization, rqst);
        if ((rspn == null) || (rspn.length() <= 0)) {
            throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 0, "rspn");
        }
        CFAccXMsgRspnHandler responseHandler = schema.getResponseHandler();
        responseHandler.parseStringContents(rspn);
        CFLibRuntimeException exceptionRaised = responseHandler.getExceptionRaised();
        if (exceptionRaised != null) {
            throw exceptionRaised;
        }
        CFAccSecGroupMemberBuff buff = null;
        Object lastObjectProcessed = responseHandler.getLastObjectProcessed();
        if (lastObjectProcessed != null) {
            ICFAccSecGroupMemberObj realized = null;
            if (lastObjectProcessed instanceof ICFAccSecGroupMemberObj) {
                realized = (ICFAccSecGroupMemberObj) lastObjectProcessed;
            } else {
                throw CFLib.getDefaultExceptionFactory().newUnsupportedClassException(getClass(), S_ProcName,
                        "lastObjectProcessed", lastObjectProcessed, "ICFAccSecGroupMemberObj");
            }
            if (realized != null) {
                buff = realized.getSecGroupMemberBuff();
            }
        }
        if (buff != null) {
            Buff.set(buff);
        }
    }

    public void deleteSecGroupMember(CFAccAuthorization Authorization, CFAccSecGroupMemberBuff Buff) {
        final String S_ProcName = "deleteSecGroupMember";
        String rqst = CFAccXMsgSchemaMessageFormatter.formatRqstXmlPreamble() + "\n" + "\t"
                + CFAccXMsgSecGroupMemberMessageFormatter.formatSecGroupMemberRqstDelete("\n\t\t\t", Buff) + "\n"
                + CFAccXMsgSchemaMessageFormatter.formatRqstXmlPostamble();
        String rspn = schema.sendReceive(Authorization, rqst);
        if ((rspn == null) || (rspn.length() <= 0)) {
            throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 0, "rspn");
        }
        CFAccXMsgRspnHandler responseHandler = schema.getResponseHandler();
        responseHandler.parseStringContents(rspn);
        CFLibRuntimeException exceptionRaised = responseHandler.getExceptionRaised();
        if (exceptionRaised != null) {
            throw exceptionRaised;
        }
        boolean deleted = responseHandler.getDeleted();
        if (!deleted) {
            throw CFLib.getDefaultExceptionFactory().newRuntimeException(getClass(), S_ProcName,
                    "Server did not respond with a Deleted message");
        }
    }

    public void deleteSecGroupMemberByIdIdx(CFAccAuthorization Authorization, long argClusterId,
            long argSecGroupMemberId) {
        final String S_ProcName = "deleteSecGroupMemberByIdIdx";
        String rqst = CFAccXMsgSchemaMessageFormatter.formatRqstXmlPreamble() + "\n" + "\t"
                + CFAccXMsgSecGroupMemberMessageFormatter.formatSecGroupMemberRqstDeleteByIdIdx("\n\t\t\t",
                        argClusterId, argSecGroupMemberId)
                + "\n" + CFAccXMsgSchemaMessageFormatter.formatRqstXmlPostamble();
        String rspn = schema.sendReceive(Authorization, rqst);
        if ((rspn == null) || (rspn.length() <= 0)) {
            throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 0, "rspn");
        }
        CFAccXMsgRspnHandler responseHandler = schema.getResponseHandler();
        responseHandler.parseStringContents(rspn);
        CFLibRuntimeException exceptionRaised = responseHandler.getExceptionRaised();
        if (exceptionRaised != null) {
            throw exceptionRaised;
        }
        boolean deleted = responseHandler.getDeleted();
        if (!deleted) {
            throw CFLib.getDefaultExceptionFactory().newRuntimeException(getClass(), S_ProcName,
                    "Server did not respond with a Deleted message");
        }
    }

    public void deleteSecGroupMemberByIdIdx(CFAccAuthorization Authorization, CFAccSecGroupMemberPKey argKey) {
        deleteSecGroupMemberByIdIdx(Authorization, argKey.getRequiredClusterId(),
                argKey.getRequiredSecGroupMemberId());
    }

    public void deleteSecGroupMemberByClusterIdx(CFAccAuthorization Authorization, long argClusterId) {
        final String S_ProcName = "deleteSecGroupMemberByClusterIdx";
        String rqst = CFAccXMsgSchemaMessageFormatter.formatRqstXmlPreamble() + "\n" + "\t"
                + CFAccXMsgSecGroupMemberMessageFormatter.formatSecGroupMemberRqstDeleteByClusterIdx("\n\t\t\t",
                        argClusterId)
                + "\n" + CFAccXMsgSchemaMessageFormatter.formatRqstXmlPostamble();
        String rspn = schema.sendReceive(Authorization, rqst);
        if ((rspn == null) || (rspn.length() <= 0)) {
            throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 0, "rspn");
        }
        CFAccXMsgRspnHandler responseHandler = schema.getResponseHandler();
        responseHandler.parseStringContents(rspn);
        CFLibRuntimeException exceptionRaised = responseHandler.getExceptionRaised();
        if (exceptionRaised != null) {
            throw exceptionRaised;
        }
        boolean deleted = responseHandler.getDeleted();
        if (!deleted) {
            throw CFLib.getDefaultExceptionFactory().newRuntimeException(getClass(), S_ProcName,
                    "Server did not respond with a Deleted message");
        }
    }

    public void deleteSecGroupMemberByClusterIdx(CFAccAuthorization Authorization,
            CFAccSecGroupMemberByClusterIdxKey argKey) {
        deleteSecGroupMemberByClusterIdx(Authorization, argKey.getRequiredClusterId());
    }

    public void deleteSecGroupMemberByGroupIdx(CFAccAuthorization Authorization, long argClusterId,
            int argSecGroupId) {
        final String S_ProcName = "deleteSecGroupMemberByGroupIdx";
        String rqst = CFAccXMsgSchemaMessageFormatter.formatRqstXmlPreamble() + "\n" + "\t"
                + CFAccXMsgSecGroupMemberMessageFormatter.formatSecGroupMemberRqstDeleteByGroupIdx("\n\t\t\t",
                        argClusterId, argSecGroupId)
                + "\n" + CFAccXMsgSchemaMessageFormatter.formatRqstXmlPostamble();
        String rspn = schema.sendReceive(Authorization, rqst);
        if ((rspn == null) || (rspn.length() <= 0)) {
            throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 0, "rspn");
        }
        CFAccXMsgRspnHandler responseHandler = schema.getResponseHandler();
        responseHandler.parseStringContents(rspn);
        CFLibRuntimeException exceptionRaised = responseHandler.getExceptionRaised();
        if (exceptionRaised != null) {
            throw exceptionRaised;
        }
        boolean deleted = responseHandler.getDeleted();
        if (!deleted) {
            throw CFLib.getDefaultExceptionFactory().newRuntimeException(getClass(), S_ProcName,
                    "Server did not respond with a Deleted message");
        }
    }

    public void deleteSecGroupMemberByGroupIdx(CFAccAuthorization Authorization,
            CFAccSecGroupMemberByGroupIdxKey argKey) {
        deleteSecGroupMemberByGroupIdx(Authorization, argKey.getRequiredClusterId(),
                argKey.getRequiredSecGroupId());
    }

    public void deleteSecGroupMemberByUserIdx(CFAccAuthorization Authorization, UUID argSecUserId) {
        final String S_ProcName = "deleteSecGroupMemberByUserIdx";
        String rqst = CFAccXMsgSchemaMessageFormatter.formatRqstXmlPreamble() + "\n" + "\t"
                + CFAccXMsgSecGroupMemberMessageFormatter.formatSecGroupMemberRqstDeleteByUserIdx("\n\t\t\t",
                        argSecUserId)
                + "\n" + CFAccXMsgSchemaMessageFormatter.formatRqstXmlPostamble();
        String rspn = schema.sendReceive(Authorization, rqst);
        if ((rspn == null) || (rspn.length() <= 0)) {
            throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 0, "rspn");
        }
        CFAccXMsgRspnHandler responseHandler = schema.getResponseHandler();
        responseHandler.parseStringContents(rspn);
        CFLibRuntimeException exceptionRaised = responseHandler.getExceptionRaised();
        if (exceptionRaised != null) {
            throw exceptionRaised;
        }
        boolean deleted = responseHandler.getDeleted();
        if (!deleted) {
            throw CFLib.getDefaultExceptionFactory().newRuntimeException(getClass(), S_ProcName,
                    "Server did not respond with a Deleted message");
        }
    }

    public void deleteSecGroupMemberByUserIdx(CFAccAuthorization Authorization,
            CFAccSecGroupMemberByUserIdxKey argKey) {
        deleteSecGroupMemberByUserIdx(Authorization, argKey.getRequiredSecUserId());
    }

    public void deleteSecGroupMemberByUUserIdx(CFAccAuthorization Authorization, long argClusterId,
            int argSecGroupId, UUID argSecUserId) {
        final String S_ProcName = "deleteSecGroupMemberByUUserIdx";
        String rqst = CFAccXMsgSchemaMessageFormatter.formatRqstXmlPreamble() + "\n" + "\t"
                + CFAccXMsgSecGroupMemberMessageFormatter.formatSecGroupMemberRqstDeleteByUUserIdx("\n\t\t\t",
                        argClusterId, argSecGroupId, argSecUserId)
                + "\n" + CFAccXMsgSchemaMessageFormatter.formatRqstXmlPostamble();
        String rspn = schema.sendReceive(Authorization, rqst);
        if ((rspn == null) || (rspn.length() <= 0)) {
            throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 0, "rspn");
        }
        CFAccXMsgRspnHandler responseHandler = schema.getResponseHandler();
        responseHandler.parseStringContents(rspn);
        CFLibRuntimeException exceptionRaised = responseHandler.getExceptionRaised();
        if (exceptionRaised != null) {
            throw exceptionRaised;
        }
        boolean deleted = responseHandler.getDeleted();
        if (!deleted) {
            throw CFLib.getDefaultExceptionFactory().newRuntimeException(getClass(), S_ProcName,
                    "Server did not respond with a Deleted message");
        }
    }

    public void deleteSecGroupMemberByUUserIdx(CFAccAuthorization Authorization,
            CFAccSecGroupMemberByUUserIdxKey argKey) {
        deleteSecGroupMemberByUUserIdx(Authorization, argKey.getRequiredClusterId(), argKey.getRequiredSecGroupId(),
                argKey.getRequiredSecUserId());
    }

    public CFAccCursor openSecGroupMemberCursorAll(CFAccAuthorization Authorization) {
        throw CFLib.getDefaultExceptionFactory().newNotSupportedException(getClass(),
                "openSecGroupMemberCursorAll");
    }

    public CFAccCursor openSecGroupMemberCursorByClusterIdx(CFAccAuthorization Authorization, long argClusterId) {
        throw CFLib.getDefaultExceptionFactory().newNotSupportedException(getClass(),
                "openSecGroupMemberCursorByClusterIdx");
    }

    public CFAccCursor openSecGroupMemberCursorByGroupIdx(CFAccAuthorization Authorization, long argClusterId,
            int argSecGroupId) {
        throw CFLib.getDefaultExceptionFactory().newNotSupportedException(getClass(),
                "openSecGroupMemberCursorByGroupIdx");
    }

    public CFAccCursor openSecGroupMemberCursorByUserIdx(CFAccAuthorization Authorization, UUID argSecUserId) {
        throw CFLib.getDefaultExceptionFactory().newNotSupportedException(getClass(),
                "openSecGroupMemberCursorByUserIdx");
    }

    public void closeSecGroupMemberCursor(CFAccCursor Cursor) {
        throw CFLib.getDefaultExceptionFactory().newNotSupportedException(getClass(), "closeSecGroupMemberCursor");
    }

    public CFAccSecGroupMemberBuff nextSecGroupMemberCursor(CFAccCursor Cursor) {
        throw CFLib.getDefaultExceptionFactory().newNotSupportedException(getClass(), "next$Tablename$Cursor");
    }

    public CFAccSecGroupMemberBuff prevSecGroupMemberCursor(CFAccCursor Cursor) {
        throw CFLib.getDefaultExceptionFactory().newNotSupportedException(getClass(), "prevSecGroupMemberCursor");
    }

    public CFAccSecGroupMemberBuff firstSecGroupMemberCursor(CFAccCursor Cursor) {
        throw CFLib.getDefaultExceptionFactory().newNotSupportedException(getClass(), "firstSecGroupMemberCursor");
    }

    public CFAccSecGroupMemberBuff lastSecGroupMemberCursor(CFAccCursor Cursor) {
        throw CFLib.getDefaultExceptionFactory().newNotSupportedException(getClass(), "lastSecGroupMemberCursor");
    }

    public CFAccSecGroupMemberBuff nthSecGroupMemberCursor(CFAccCursor Cursor, int Idx) {
        throw CFLib.getDefaultExceptionFactory().newNotSupportedException(getClass(), "nthSecGroupMemberCursor");
    }

    /**
     *   Release the prepared statements.
     *   <p>
     *   When the schema changes connections, the prepared statements
     *   have to be released because they contain connection-specific
     *   information for most databases.
     */
    public void releasePreparedStatements() {
        throw CFLib.getDefaultExceptionFactory().newNotSupportedException(getClass(), "releasePreparedStatements");
    }
}