Java tutorial
// Description: Java 7 XMsg Client DbIO implementation for SecForm. /* * 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.*; /* * CFAccXMsgClientSecFormTable XMsg Client DbIO implementation * for SecForm. */ public class CFAccXMsgClientSecFormTable implements ICFAccSecFormTable { private CFAccXMsgClientSchema schema; public CFAccXMsgClientSecFormTable(CFAccXMsgClientSchema argSchema) { schema = argSchema; } public void createSecForm(CFAccAuthorization Authorization, CFAccSecFormBuff Buff) { final String S_ProcName = "createSecForm"; String rqst = CFAccXMsgSchemaMessageFormatter.formatRqstXmlPreamble() + "\n" + "\t" + CFAccXMsgSecFormMessageFormatter.formatSecFormRqstCreate("\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) { ICFAccSecFormObj realized = null; if (lastObjectProcessed instanceof ICFAccSecFormObj) { realized = (ICFAccSecFormObj) lastObjectProcessed; } else { throw CFLib.getDefaultExceptionFactory().newUnsupportedClassException(getClass(), S_ProcName, "lastObjectProcessed", lastObjectProcessed, "ICFAccSecFormObj"); } if (realized != null) { Buff.set(realized.getSecFormBuff()); } } else { throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 0, "responseHandler.getLastObjectProcessed()"); } } public CFAccSecFormBuff readDerived(CFAccAuthorization Authorization, CFAccSecFormPKey PKey) { final String S_ProcName = "readDerived"; String rqst = CFAccXMsgSchemaMessageFormatter.formatRqstXmlPreamble() + "\n" + "\t" + CFAccXMsgSecFormMessageFormatter.formatSecFormRqstRead("\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; } CFAccSecFormBuff buff = null; Object lastObjectProcessed = responseHandler.getLastObjectProcessed(); if (lastObjectProcessed != null) { ICFAccSecFormObj realized = null; if (lastObjectProcessed instanceof ICFAccSecFormObj) { realized = (ICFAccSecFormObj) lastObjectProcessed; } else { throw CFLib.getDefaultExceptionFactory().newUnsupportedClassException(getClass(), S_ProcName, "lastObjectProcessed", lastObjectProcessed, "ICFAccSecFormObj"); } if (realized != null) { buff = realized.getSecFormBuff(); } } return (buff); } public CFAccSecFormBuff lockDerived(CFAccAuthorization Authorization, CFAccSecFormPKey PKey) { final String S_ProcName = "lockDerived"; String rqst = CFAccXMsgSchemaMessageFormatter.formatRqstXmlPreamble() + "\n" + "\t" + CFAccXMsgSecFormMessageFormatter.formatSecFormRqstLock("\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; } CFAccSecFormBuff buff = null; Object lastObjectProcessed = responseHandler.getLastObjectProcessed(); if (lastObjectProcessed != null) { ICFAccSecFormObj realized = null; if (lastObjectProcessed instanceof ICFAccSecFormObj) { realized = (ICFAccSecFormObj) lastObjectProcessed; } else { throw CFLib.getDefaultExceptionFactory().newUnsupportedClassException(getClass(), S_ProcName, "lastObjectProcessed", lastObjectProcessed, "ICFAccSecFormObj"); } if (realized != null) { buff = realized.getSecFormBuff(); } } return (buff); } public CFAccSecFormBuff[] readAllDerived(CFAccAuthorization Authorization) { final String S_ProcName = "readAllDerived"; String rqst = CFAccXMsgSchemaMessageFormatter.formatRqstXmlPreamble() + "\n" + "\t" + CFAccXMsgSecFormMessageFormatter.formatSecFormRqstReadAll("\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<CFAccSecFormPKey, ICFAccSecFormObj> sortedMap = (SortedMap<CFAccSecFormPKey, ICFAccSecFormObj>) sortedMapObj; int sz = sortedMap.size(); CFAccSecFormBuff arr[] = new CFAccSecFormBuff[sz]; Iterator<ICFAccSecFormObj> iter = sortedMap.values().iterator(); ICFAccSecFormObj cur; for (int idx = 0; idx < sz; idx++) { cur = (ICFAccSecFormObj) iter.next(); arr[idx] = cur.getSecFormBuff(); } return (arr); } public CFAccSecFormBuff readDerivedByIdIdx(CFAccAuthorization Authorization, long argClusterId, int argSecFormId) { final String S_ProcName = "readDerivedByIdIdx"; String rqst = CFAccXMsgSchemaMessageFormatter.formatRqstXmlPreamble() + "\n" + "\t" + CFAccXMsgSecFormMessageFormatter.formatSecFormRqstReadByIdIdx("\n\t\t\t", argClusterId, argSecFormId) + "\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; } CFAccSecFormBuff buff = null; Object lastObjectProcessed = responseHandler.getLastObjectProcessed(); if (lastObjectProcessed != null) { ICFAccSecFormObj realized = null; if (lastObjectProcessed instanceof ICFAccSecFormObj) { realized = (ICFAccSecFormObj) lastObjectProcessed; } else { throw CFLib.getDefaultExceptionFactory().newUnsupportedClassException(getClass(), S_ProcName, "lastObjectProcessed", lastObjectProcessed, "ICFAccSecFormObj"); } if (realized != null) { buff = realized.getSecFormBuff(); } } return (buff); } public CFAccSecFormBuff[] readDerivedByClusterIdx(CFAccAuthorization Authorization, long argClusterId) { final String S_ProcName = "readDerivedByClusterIdx"; String rqst = CFAccXMsgSchemaMessageFormatter.formatRqstXmlPreamble() + "\n" + "\t" + CFAccXMsgSecFormMessageFormatter.formatSecFormRqstReadByClusterIdx("\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<CFAccSecFormPKey, ICFAccSecFormObj> sortedMap = (SortedMap<CFAccSecFormPKey, ICFAccSecFormObj>) sortedMapObj; int sz = sortedMap.size(); CFAccSecFormBuff arr[] = new CFAccSecFormBuff[sz]; Iterator<ICFAccSecFormObj> iter = sortedMap.values().iterator(); ICFAccSecFormObj cur; for (int idx = 0; idx < sz; idx++) { cur = (ICFAccSecFormObj) iter.next(); arr[idx] = cur.getSecFormBuff(); } return (arr); } public CFAccSecFormBuff[] readDerivedBySecAppIdx(CFAccAuthorization Authorization, long argClusterId, int argSecAppId) { final String S_ProcName = "readDerivedBySecAppIdx"; String rqst = CFAccXMsgSchemaMessageFormatter.formatRqstXmlPreamble() + "\n" + "\t" + CFAccXMsgSecFormMessageFormatter.formatSecFormRqstReadBySecAppIdx("\n\t\t\t", argClusterId, argSecAppId) + "\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<CFAccSecFormPKey, ICFAccSecFormObj> sortedMap = (SortedMap<CFAccSecFormPKey, ICFAccSecFormObj>) sortedMapObj; int sz = sortedMap.size(); CFAccSecFormBuff arr[] = new CFAccSecFormBuff[sz]; Iterator<ICFAccSecFormObj> iter = sortedMap.values().iterator(); ICFAccSecFormObj cur; for (int idx = 0; idx < sz; idx++) { cur = (ICFAccSecFormObj) iter.next(); arr[idx] = cur.getSecFormBuff(); } return (arr); } public CFAccSecFormBuff readDerivedByUJEEServletIdx(CFAccAuthorization Authorization, long argClusterId, int argSecAppId, String argJEEServletMapName) { final String S_ProcName = "readDerivedByUJEEServletIdx"; String rqst = CFAccXMsgSchemaMessageFormatter.formatRqstXmlPreamble() + "\n" + "\t" + CFAccXMsgSecFormMessageFormatter.formatSecFormRqstReadByUJEEServletIdx("\n\t\t\t", argClusterId, argSecAppId, argJEEServletMapName) + "\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; } CFAccSecFormBuff buff = null; Object lastObjectProcessed = responseHandler.getLastObjectProcessed(); if (lastObjectProcessed != null) { ICFAccSecFormObj realized = null; if (lastObjectProcessed instanceof ICFAccSecFormObj) { realized = (ICFAccSecFormObj) lastObjectProcessed; } else { throw CFLib.getDefaultExceptionFactory().newUnsupportedClassException(getClass(), S_ProcName, "lastObjectProcessed", lastObjectProcessed, "ICFAccSecFormObj"); } if (realized != null) { buff = realized.getSecFormBuff(); } } return (buff); } public CFAccSecFormBuff readBuff(CFAccAuthorization Authorization, CFAccSecFormPKey PKey) { throw CFLib.getDefaultExceptionFactory().newNotSupportedException(getClass(), "readBuff"); } public CFAccSecFormBuff lockBuff(CFAccAuthorization Authorization, CFAccSecFormPKey PKey) { throw CFLib.getDefaultExceptionFactory().newNotSupportedException(getClass(), "lockBuff"); } public CFAccSecFormBuff[] readAllBuff(CFAccAuthorization Authorization) { throw CFLib.getDefaultExceptionFactory().newNotSupportedException(getClass(), "readAllBuff"); } public CFAccSecFormBuff readBuffByIdIdx(CFAccAuthorization Authorization, long argClusterId, int argSecFormId) { throw CFLib.getDefaultExceptionFactory().newNotSupportedException(getClass(), "readBuffByIdIdx"); } public CFAccSecFormBuff[] readBuffByClusterIdx(CFAccAuthorization Authorization, long argClusterId) { throw CFLib.getDefaultExceptionFactory().newNotSupportedException(getClass(), "readBuffByClusterIdx"); } public CFAccSecFormBuff[] readBuffBySecAppIdx(CFAccAuthorization Authorization, long argClusterId, int argSecAppId) { throw CFLib.getDefaultExceptionFactory().newNotSupportedException(getClass(), "readBuffBySecAppIdx"); } public CFAccSecFormBuff readBuffByUJEEServletIdx(CFAccAuthorization Authorization, long argClusterId, int argSecAppId, String argJEEServletMapName) { throw CFLib.getDefaultExceptionFactory().newNotSupportedException(getClass(), "readBuffByUJEEServletIdx"); } public void updateSecForm(CFAccAuthorization Authorization, CFAccSecFormBuff Buff) { final String S_ProcName = "updateSecForm"; String rqst = CFAccXMsgSchemaMessageFormatter.formatRqstXmlPreamble() + "\n" + "\t" + CFAccXMsgSecFormMessageFormatter.formatSecFormRqstUpdate("\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; } CFAccSecFormBuff buff = null; Object lastObjectProcessed = responseHandler.getLastObjectProcessed(); if (lastObjectProcessed != null) { ICFAccSecFormObj realized = null; if (lastObjectProcessed instanceof ICFAccSecFormObj) { realized = (ICFAccSecFormObj) lastObjectProcessed; } else { throw CFLib.getDefaultExceptionFactory().newUnsupportedClassException(getClass(), S_ProcName, "lastObjectProcessed", lastObjectProcessed, "ICFAccSecFormObj"); } if (realized != null) { buff = realized.getSecFormBuff(); } } if (buff != null) { Buff.set(buff); } } public void deleteSecForm(CFAccAuthorization Authorization, CFAccSecFormBuff Buff) { final String S_ProcName = "deleteSecForm"; String rqst = CFAccXMsgSchemaMessageFormatter.formatRqstXmlPreamble() + "\n" + "\t" + CFAccXMsgSecFormMessageFormatter.formatSecFormRqstDelete("\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 deleteSecFormByIdIdx(CFAccAuthorization Authorization, long argClusterId, int argSecFormId) { final String S_ProcName = "deleteSecFormByIdIdx"; String rqst = CFAccXMsgSchemaMessageFormatter.formatRqstXmlPreamble() + "\n" + "\t" + CFAccXMsgSecFormMessageFormatter.formatSecFormRqstDeleteByIdIdx("\n\t\t\t", argClusterId, argSecFormId) + "\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 deleteSecFormByIdIdx(CFAccAuthorization Authorization, CFAccSecFormPKey argKey) { deleteSecFormByIdIdx(Authorization, argKey.getRequiredClusterId(), argKey.getRequiredSecFormId()); } public void deleteSecFormByClusterIdx(CFAccAuthorization Authorization, long argClusterId) { final String S_ProcName = "deleteSecFormByClusterIdx"; String rqst = CFAccXMsgSchemaMessageFormatter.formatRqstXmlPreamble() + "\n" + "\t" + CFAccXMsgSecFormMessageFormatter.formatSecFormRqstDeleteByClusterIdx("\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 deleteSecFormByClusterIdx(CFAccAuthorization Authorization, CFAccSecFormByClusterIdxKey argKey) { deleteSecFormByClusterIdx(Authorization, argKey.getRequiredClusterId()); } public void deleteSecFormBySecAppIdx(CFAccAuthorization Authorization, long argClusterId, int argSecAppId) { final String S_ProcName = "deleteSecFormBySecAppIdx"; String rqst = CFAccXMsgSchemaMessageFormatter.formatRqstXmlPreamble() + "\n" + "\t" + CFAccXMsgSecFormMessageFormatter.formatSecFormRqstDeleteBySecAppIdx("\n\t\t\t", argClusterId, argSecAppId) + "\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 deleteSecFormBySecAppIdx(CFAccAuthorization Authorization, CFAccSecFormBySecAppIdxKey argKey) { deleteSecFormBySecAppIdx(Authorization, argKey.getRequiredClusterId(), argKey.getRequiredSecAppId()); } public void deleteSecFormByUJEEServletIdx(CFAccAuthorization Authorization, long argClusterId, int argSecAppId, String argJEEServletMapName) { final String S_ProcName = "deleteSecFormByUJEEServletIdx"; String rqst = CFAccXMsgSchemaMessageFormatter.formatRqstXmlPreamble() + "\n" + "\t" + CFAccXMsgSecFormMessageFormatter.formatSecFormRqstDeleteByUJEEServletIdx("\n\t\t\t", argClusterId, argSecAppId, argJEEServletMapName) + "\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 deleteSecFormByUJEEServletIdx(CFAccAuthorization Authorization, CFAccSecFormByUJEEServletIdxKey argKey) { deleteSecFormByUJEEServletIdx(Authorization, argKey.getRequiredClusterId(), argKey.getRequiredSecAppId(), argKey.getRequiredJEEServletMapName()); } public CFAccCursor openSecFormCursorAll(CFAccAuthorization Authorization) { throw CFLib.getDefaultExceptionFactory().newNotSupportedException(getClass(), "openSecFormCursorAll"); } public CFAccCursor openSecFormCursorByClusterIdx(CFAccAuthorization Authorization, long argClusterId) { throw CFLib.getDefaultExceptionFactory().newNotSupportedException(getClass(), "openSecFormCursorByClusterIdx"); } public CFAccCursor openSecFormCursorBySecAppIdx(CFAccAuthorization Authorization, long argClusterId, int argSecAppId) { throw CFLib.getDefaultExceptionFactory().newNotSupportedException(getClass(), "openSecFormCursorBySecAppIdx"); } public void closeSecFormCursor(CFAccCursor Cursor) { throw CFLib.getDefaultExceptionFactory().newNotSupportedException(getClass(), "closeSecFormCursor"); } public CFAccSecFormBuff nextSecFormCursor(CFAccCursor Cursor) { throw CFLib.getDefaultExceptionFactory().newNotSupportedException(getClass(), "next$Tablename$Cursor"); } public CFAccSecFormBuff prevSecFormCursor(CFAccCursor Cursor) { throw CFLib.getDefaultExceptionFactory().newNotSupportedException(getClass(), "prevSecFormCursor"); } public CFAccSecFormBuff firstSecFormCursor(CFAccCursor Cursor) { throw CFLib.getDefaultExceptionFactory().newNotSupportedException(getClass(), "firstSecFormCursor"); } public CFAccSecFormBuff lastSecFormCursor(CFAccCursor Cursor) { throw CFLib.getDefaultExceptionFactory().newNotSupportedException(getClass(), "lastSecFormCursor"); } public CFAccSecFormBuff nthSecFormCursor(CFAccCursor Cursor, int Idx) { throw CFLib.getDefaultExceptionFactory().newNotSupportedException(getClass(), "nthSecFormCursor"); } /** * 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"); } }