net.sourceforge.msscodefactory.cfasterisk.v2_0.CFAstXMsgClient.CFAstXMsgClientSecGroupMemberTable.java Source code

Java tutorial

Introduction

Here is the source code for net.sourceforge.msscodefactory.cfasterisk.v2_0.CFAstXMsgClient.CFAstXMsgClientSecGroupMemberTable.java

Source

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

/*
 *   CF Asterisk 11 Configuration Model
 *
 *   Copyright (c) 2013-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.cfasterisk.v2_0.CFAstXMsgClient;

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.cfasterisk.v2_0.CFAst.*;
import net.sourceforge.msscodefactory.cfasterisk.v2_0.CFAstObj.*;
import net.sourceforge.msscodefactory.cfasterisk.v2_0.CFAstXMsg.*;
import net.sourceforge.msscodefactory.cfasterisk.v2_0.CFAstXMsgRspnHandler.*;

/*
 *   CFAstXMsgClientSecGroupMemberTable XMsg Client DbIO implementation
 *   for SecGroupMember.
 */
public class CFAstXMsgClientSecGroupMemberTable implements ICFAstSecGroupMemberTable {
    private CFAstXMsgClientSchema schema;

    public CFAstXMsgClientSecGroupMemberTable(CFAstXMsgClientSchema argSchema) {
        schema = argSchema;
    }

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

    public CFAstSecGroupMemberBuff readDerived(CFAstAuthorization Authorization, CFAstSecGroupMemberPKey PKey) {
        final String S_ProcName = "readDerived";
        String rqst = CFAstXMsgSchemaMessageFormatter.formatRqstXmlPreamble() + "\n" + "\t"
                + CFAstXMsgSecGroupMemberMessageFormatter.formatSecGroupMemberRqstRead("\n\t\t\t", PKey) + "\n"
                + CFAstXMsgSchemaMessageFormatter.formatRqstXmlPostamble();
        String rspn = schema.sendReceive(Authorization, rqst);
        if ((rspn == null) || (rspn.length() <= 0)) {
            throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 0, "rspn");
        }
        CFAstXMsgRspnHandler responseHandler = schema.getResponseHandler();
        responseHandler.parseStringContents(rspn);
        CFLibRuntimeException exceptionRaised = responseHandler.getExceptionRaised();
        if (exceptionRaised != null) {
            throw exceptionRaised;
        }
        CFAstSecGroupMemberBuff buff = null;
        Object lastObjectProcessed = responseHandler.getLastObjectProcessed();
        if (lastObjectProcessed != null) {
            ICFAstSecGroupMemberObj realized = null;
            if (lastObjectProcessed instanceof ICFAstSecGroupMemberObj) {
                realized = (ICFAstSecGroupMemberObj) lastObjectProcessed;
            } else {
                throw CFLib.getDefaultExceptionFactory().newUnsupportedClassException(getClass(), S_ProcName,
                        "lastObjectProcessed", lastObjectProcessed, "ICFAstSecGroupMemberObj");
            }
            if (realized != null) {
                buff = realized.getSecGroupMemberBuff();
            }
        }
        return (buff);
    }

    public CFAstSecGroupMemberBuff lockDerived(CFAstAuthorization Authorization, CFAstSecGroupMemberPKey PKey) {
        final String S_ProcName = "lockDerived";
        String rqst = CFAstXMsgSchemaMessageFormatter.formatRqstXmlPreamble() + "\n" + "\t"
                + CFAstXMsgSecGroupMemberMessageFormatter.formatSecGroupMemberRqstLock("\n\t\t\t", PKey) + "\n"
                + CFAstXMsgSchemaMessageFormatter.formatRqstXmlPostamble();
        String rspn = schema.sendReceive(Authorization, rqst);
        if ((rspn == null) || (rspn.length() <= 0)) {
            throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 0, "rspn");
        }
        CFAstXMsgRspnHandler responseHandler = schema.getResponseHandler();
        responseHandler.parseStringContents(rspn);
        CFLibRuntimeException exceptionRaised = responseHandler.getExceptionRaised();
        if (exceptionRaised != null) {
            throw exceptionRaised;
        }
        CFAstSecGroupMemberBuff buff = null;
        Object lastObjectProcessed = responseHandler.getLastObjectProcessed();
        if (lastObjectProcessed != null) {
            ICFAstSecGroupMemberObj realized = null;
            if (lastObjectProcessed instanceof ICFAstSecGroupMemberObj) {
                realized = (ICFAstSecGroupMemberObj) lastObjectProcessed;
            } else {
                throw CFLib.getDefaultExceptionFactory().newUnsupportedClassException(getClass(), S_ProcName,
                        "lastObjectProcessed", lastObjectProcessed, "ICFAstSecGroupMemberObj");
            }
            if (realized != null) {
                buff = realized.getSecGroupMemberBuff();
            }
        }
        return (buff);
    }

    public CFAstSecGroupMemberBuff[] readAllDerived(CFAstAuthorization Authorization) {
        final String S_ProcName = "readAllDerived";
        String rqst = CFAstXMsgSchemaMessageFormatter.formatRqstXmlPreamble() + "\n" + "\t"
                + CFAstXMsgSecGroupMemberMessageFormatter.formatSecGroupMemberRqstReadAll("\n\t\t\t") + "\n"
                + CFAstXMsgSchemaMessageFormatter.formatRqstXmlPostamble();
        String rspn = schema.sendReceive(Authorization, rqst);
        if ((rspn == null) || (rspn.length() <= 0)) {
            throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 0, "rspn");
        }
        CFAstXMsgRspnHandler 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<CFAstSecGroupMemberPKey, ICFAstSecGroupMemberObj> sortedMap = (SortedMap<CFAstSecGroupMemberPKey, ICFAstSecGroupMemberObj>) sortedMapObj;
        int sz = sortedMap.size();
        CFAstSecGroupMemberBuff arr[] = new CFAstSecGroupMemberBuff[sz];
        Iterator<ICFAstSecGroupMemberObj> iter = sortedMap.values().iterator();
        ICFAstSecGroupMemberObj cur;
        for (int idx = 0; idx < sz; idx++) {
            cur = (ICFAstSecGroupMemberObj) iter.next();
            arr[idx] = cur.getSecGroupMemberBuff();
        }
        return (arr);
    }

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

    public CFAstSecGroupMemberBuff[] readDerivedByClusterIdx(CFAstAuthorization Authorization, long argClusterId) {
        final String S_ProcName = "readDerivedByClusterIdx";
        String rqst = CFAstXMsgSchemaMessageFormatter.formatRqstXmlPreamble() + "\n" + "\t"
                + CFAstXMsgSecGroupMemberMessageFormatter.formatSecGroupMemberRqstReadByClusterIdx("\n\t\t\t",
                        argClusterId)
                + "\n" + CFAstXMsgSchemaMessageFormatter.formatRqstXmlPostamble();
        String rspn = schema.sendReceive(Authorization, rqst);
        if ((rspn == null) || (rspn.length() <= 0)) {
            throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 0, "rspn");
        }
        CFAstXMsgRspnHandler 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<CFAstSecGroupMemberPKey, ICFAstSecGroupMemberObj> sortedMap = (SortedMap<CFAstSecGroupMemberPKey, ICFAstSecGroupMemberObj>) sortedMapObj;
        int sz = sortedMap.size();
        CFAstSecGroupMemberBuff arr[] = new CFAstSecGroupMemberBuff[sz];
        Iterator<ICFAstSecGroupMemberObj> iter = sortedMap.values().iterator();
        ICFAstSecGroupMemberObj cur;
        for (int idx = 0; idx < sz; idx++) {
            cur = (ICFAstSecGroupMemberObj) iter.next();
            arr[idx] = cur.getSecGroupMemberBuff();
        }
        return (arr);
    }

    public CFAstSecGroupMemberBuff[] readDerivedByGroupIdx(CFAstAuthorization Authorization, long argClusterId,
            int argSecGroupId) {
        final String S_ProcName = "readDerivedByGroupIdx";
        String rqst = CFAstXMsgSchemaMessageFormatter.formatRqstXmlPreamble() + "\n" + "\t"
                + CFAstXMsgSecGroupMemberMessageFormatter.formatSecGroupMemberRqstReadByGroupIdx("\n\t\t\t",
                        argClusterId, argSecGroupId)
                + "\n" + CFAstXMsgSchemaMessageFormatter.formatRqstXmlPostamble();
        String rspn = schema.sendReceive(Authorization, rqst);
        if ((rspn == null) || (rspn.length() <= 0)) {
            throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 0, "rspn");
        }
        CFAstXMsgRspnHandler 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<CFAstSecGroupMemberPKey, ICFAstSecGroupMemberObj> sortedMap = (SortedMap<CFAstSecGroupMemberPKey, ICFAstSecGroupMemberObj>) sortedMapObj;
        int sz = sortedMap.size();
        CFAstSecGroupMemberBuff arr[] = new CFAstSecGroupMemberBuff[sz];
        Iterator<ICFAstSecGroupMemberObj> iter = sortedMap.values().iterator();
        ICFAstSecGroupMemberObj cur;
        for (int idx = 0; idx < sz; idx++) {
            cur = (ICFAstSecGroupMemberObj) iter.next();
            arr[idx] = cur.getSecGroupMemberBuff();
        }
        return (arr);
    }

    public CFAstSecGroupMemberBuff[] readDerivedByUserIdx(CFAstAuthorization Authorization, UUID argSecUserId) {
        final String S_ProcName = "readDerivedByUserIdx";
        String rqst = CFAstXMsgSchemaMessageFormatter.formatRqstXmlPreamble() + "\n" + "\t"
                + CFAstXMsgSecGroupMemberMessageFormatter.formatSecGroupMemberRqstReadByUserIdx("\n\t\t\t",
                        argSecUserId)
                + "\n" + CFAstXMsgSchemaMessageFormatter.formatRqstXmlPostamble();
        String rspn = schema.sendReceive(Authorization, rqst);
        if ((rspn == null) || (rspn.length() <= 0)) {
            throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 0, "rspn");
        }
        CFAstXMsgRspnHandler 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<CFAstSecGroupMemberPKey, ICFAstSecGroupMemberObj> sortedMap = (SortedMap<CFAstSecGroupMemberPKey, ICFAstSecGroupMemberObj>) sortedMapObj;
        int sz = sortedMap.size();
        CFAstSecGroupMemberBuff arr[] = new CFAstSecGroupMemberBuff[sz];
        Iterator<ICFAstSecGroupMemberObj> iter = sortedMap.values().iterator();
        ICFAstSecGroupMemberObj cur;
        for (int idx = 0; idx < sz; idx++) {
            cur = (ICFAstSecGroupMemberObj) iter.next();
            arr[idx] = cur.getSecGroupMemberBuff();
        }
        return (arr);
    }

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

    public CFAstSecGroupMemberBuff readBuff(CFAstAuthorization Authorization, CFAstSecGroupMemberPKey PKey) {
        throw CFLib.getDefaultExceptionFactory().newNotSupportedException(getClass(), "readBuff");
    }

    public CFAstSecGroupMemberBuff lockBuff(CFAstAuthorization Authorization, CFAstSecGroupMemberPKey PKey) {
        throw CFLib.getDefaultExceptionFactory().newNotSupportedException(getClass(), "lockBuff");
    }

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

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

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

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

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

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

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

    public void deleteSecGroupMember(CFAstAuthorization Authorization, CFAstSecGroupMemberBuff Buff) {
        final String S_ProcName = "deleteSecGroupMember";
        String rqst = CFAstXMsgSchemaMessageFormatter.formatRqstXmlPreamble() + "\n" + "\t"
                + CFAstXMsgSecGroupMemberMessageFormatter.formatSecGroupMemberRqstDelete("\n\t\t\t", Buff) + "\n"
                + CFAstXMsgSchemaMessageFormatter.formatRqstXmlPostamble();
        String rspn = schema.sendReceive(Authorization, rqst);
        if ((rspn == null) || (rspn.length() <= 0)) {
            throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 0, "rspn");
        }
        CFAstXMsgRspnHandler 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(CFAstAuthorization Authorization, long argClusterId,
            long argSecGroupMemberId) {
        final String S_ProcName = "deleteSecGroupMemberByIdIdx";
        String rqst = CFAstXMsgSchemaMessageFormatter.formatRqstXmlPreamble() + "\n" + "\t"
                + CFAstXMsgSecGroupMemberMessageFormatter.formatSecGroupMemberRqstDeleteByIdIdx("\n\t\t\t",
                        argClusterId, argSecGroupMemberId)
                + "\n" + CFAstXMsgSchemaMessageFormatter.formatRqstXmlPostamble();
        String rspn = schema.sendReceive(Authorization, rqst);
        if ((rspn == null) || (rspn.length() <= 0)) {
            throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 0, "rspn");
        }
        CFAstXMsgRspnHandler 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(CFAstAuthorization Authorization, CFAstSecGroupMemberPKey argKey) {
        deleteSecGroupMemberByIdIdx(Authorization, argKey.getRequiredClusterId(),
                argKey.getRequiredSecGroupMemberId());
    }

    public void deleteSecGroupMemberByClusterIdx(CFAstAuthorization Authorization, long argClusterId) {
        final String S_ProcName = "deleteSecGroupMemberByClusterIdx";
        String rqst = CFAstXMsgSchemaMessageFormatter.formatRqstXmlPreamble() + "\n" + "\t"
                + CFAstXMsgSecGroupMemberMessageFormatter.formatSecGroupMemberRqstDeleteByClusterIdx("\n\t\t\t",
                        argClusterId)
                + "\n" + CFAstXMsgSchemaMessageFormatter.formatRqstXmlPostamble();
        String rspn = schema.sendReceive(Authorization, rqst);
        if ((rspn == null) || (rspn.length() <= 0)) {
            throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 0, "rspn");
        }
        CFAstXMsgRspnHandler 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(CFAstAuthorization Authorization,
            CFAstSecGroupMemberByClusterIdxKey argKey) {
        deleteSecGroupMemberByClusterIdx(Authorization, argKey.getRequiredClusterId());
    }

    public void deleteSecGroupMemberByGroupIdx(CFAstAuthorization Authorization, long argClusterId,
            int argSecGroupId) {
        final String S_ProcName = "deleteSecGroupMemberByGroupIdx";
        String rqst = CFAstXMsgSchemaMessageFormatter.formatRqstXmlPreamble() + "\n" + "\t"
                + CFAstXMsgSecGroupMemberMessageFormatter.formatSecGroupMemberRqstDeleteByGroupIdx("\n\t\t\t",
                        argClusterId, argSecGroupId)
                + "\n" + CFAstXMsgSchemaMessageFormatter.formatRqstXmlPostamble();
        String rspn = schema.sendReceive(Authorization, rqst);
        if ((rspn == null) || (rspn.length() <= 0)) {
            throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 0, "rspn");
        }
        CFAstXMsgRspnHandler 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(CFAstAuthorization Authorization,
            CFAstSecGroupMemberByGroupIdxKey argKey) {
        deleteSecGroupMemberByGroupIdx(Authorization, argKey.getRequiredClusterId(),
                argKey.getRequiredSecGroupId());
    }

    public void deleteSecGroupMemberByUserIdx(CFAstAuthorization Authorization, UUID argSecUserId) {
        final String S_ProcName = "deleteSecGroupMemberByUserIdx";
        String rqst = CFAstXMsgSchemaMessageFormatter.formatRqstXmlPreamble() + "\n" + "\t"
                + CFAstXMsgSecGroupMemberMessageFormatter.formatSecGroupMemberRqstDeleteByUserIdx("\n\t\t\t",
                        argSecUserId)
                + "\n" + CFAstXMsgSchemaMessageFormatter.formatRqstXmlPostamble();
        String rspn = schema.sendReceive(Authorization, rqst);
        if ((rspn == null) || (rspn.length() <= 0)) {
            throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 0, "rspn");
        }
        CFAstXMsgRspnHandler 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(CFAstAuthorization Authorization,
            CFAstSecGroupMemberByUserIdxKey argKey) {
        deleteSecGroupMemberByUserIdx(Authorization, argKey.getRequiredSecUserId());
    }

    public void deleteSecGroupMemberByUUserIdx(CFAstAuthorization Authorization, long argClusterId,
            int argSecGroupId, UUID argSecUserId) {
        final String S_ProcName = "deleteSecGroupMemberByUUserIdx";
        String rqst = CFAstXMsgSchemaMessageFormatter.formatRqstXmlPreamble() + "\n" + "\t"
                + CFAstXMsgSecGroupMemberMessageFormatter.formatSecGroupMemberRqstDeleteByUUserIdx("\n\t\t\t",
                        argClusterId, argSecGroupId, argSecUserId)
                + "\n" + CFAstXMsgSchemaMessageFormatter.formatRqstXmlPostamble();
        String rspn = schema.sendReceive(Authorization, rqst);
        if ((rspn == null) || (rspn.length() <= 0)) {
            throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 0, "rspn");
        }
        CFAstXMsgRspnHandler 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(CFAstAuthorization Authorization,
            CFAstSecGroupMemberByUUserIdxKey argKey) {
        deleteSecGroupMemberByUUserIdx(Authorization, argKey.getRequiredClusterId(), argKey.getRequiredSecGroupId(),
                argKey.getRequiredSecUserId());
    }

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

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

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

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

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

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

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

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

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

    public CFAstSecGroupMemberBuff nthSecGroupMemberCursor(CFAstCursor 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");
    }
}