Java tutorial
// Description: Java 7 XMsg Client DbIO implementation for SecApp. /* * MSS Code Factory CFGCash Java Swing Interface 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.cfgcash.v2_0.CFGCashXMsgClient; 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.cfgcash.v2_0.CFGCash.*; import net.sourceforge.msscodefactory.cfgcash.v2_0.CFGCashObj.*; import net.sourceforge.msscodefactory.cfgcash.v2_0.CFGCashXMsg.*; import net.sourceforge.msscodefactory.cfgcash.v2_0.CFGCashXMsgRspnHandler.*; /* * CFGCashXMsgClientSecAppTable XMsg Client DbIO implementation * for SecApp. */ public class CFGCashXMsgClientSecAppTable implements ICFGCashSecAppTable { private CFGCashXMsgClientSchema schema; public CFGCashXMsgClientSecAppTable(CFGCashXMsgClientSchema argSchema) { schema = argSchema; } public void createSecApp(CFGCashAuthorization Authorization, CFGCashSecAppBuff Buff) { final String S_ProcName = "createSecApp"; String rqst = CFGCashXMsgSchemaMessageFormatter.formatRqstXmlPreamble() + "\n" + "\t" + CFGCashXMsgSecAppMessageFormatter.formatSecAppRqstCreate("\n\t\t\t", Buff) + "\n" + CFGCashXMsgSchemaMessageFormatter.formatRqstXmlPostamble(); String rspn = schema.sendReceive(Authorization, rqst); if ((rspn == null) || (rspn.length() <= 0)) { throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 0, "rspn"); } CFGCashXMsgRspnHandler responseHandler = schema.getResponseHandler(); responseHandler.parseStringContents(rspn); CFLibRuntimeException exceptionRaised = responseHandler.getExceptionRaised(); if (exceptionRaised != null) { throw exceptionRaised; } Object lastObjectProcessed = responseHandler.getLastObjectProcessed(); if (lastObjectProcessed != null) { ICFGCashSecAppObj realized = null; if (lastObjectProcessed instanceof ICFGCashSecAppObj) { realized = (ICFGCashSecAppObj) lastObjectProcessed; } else { throw CFLib.getDefaultExceptionFactory().newUnsupportedClassException(getClass(), S_ProcName, "lastObjectProcessed", lastObjectProcessed, "ICFGCashSecAppObj"); } if (realized != null) { Buff.set(realized.getSecAppBuff()); } } else { throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 0, "responseHandler.getLastObjectProcessed()"); } } public CFGCashSecAppBuff readDerived(CFGCashAuthorization Authorization, CFGCashSecAppPKey PKey) { final String S_ProcName = "readDerived"; String rqst = CFGCashXMsgSchemaMessageFormatter.formatRqstXmlPreamble() + "\n" + "\t" + CFGCashXMsgSecAppMessageFormatter.formatSecAppRqstRead("\n\t\t\t", PKey) + "\n" + CFGCashXMsgSchemaMessageFormatter.formatRqstXmlPostamble(); String rspn = schema.sendReceive(Authorization, rqst); if ((rspn == null) || (rspn.length() <= 0)) { throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 0, "rspn"); } CFGCashXMsgRspnHandler responseHandler = schema.getResponseHandler(); responseHandler.parseStringContents(rspn); CFLibRuntimeException exceptionRaised = responseHandler.getExceptionRaised(); if (exceptionRaised != null) { throw exceptionRaised; } CFGCashSecAppBuff buff = null; Object lastObjectProcessed = responseHandler.getLastObjectProcessed(); if (lastObjectProcessed != null) { ICFGCashSecAppObj realized = null; if (lastObjectProcessed instanceof ICFGCashSecAppObj) { realized = (ICFGCashSecAppObj) lastObjectProcessed; } else { throw CFLib.getDefaultExceptionFactory().newUnsupportedClassException(getClass(), S_ProcName, "lastObjectProcessed", lastObjectProcessed, "ICFGCashSecAppObj"); } if (realized != null) { buff = realized.getSecAppBuff(); } } return (buff); } public CFGCashSecAppBuff lockDerived(CFGCashAuthorization Authorization, CFGCashSecAppPKey PKey) { final String S_ProcName = "lockDerived"; String rqst = CFGCashXMsgSchemaMessageFormatter.formatRqstXmlPreamble() + "\n" + "\t" + CFGCashXMsgSecAppMessageFormatter.formatSecAppRqstLock("\n\t\t\t", PKey) + "\n" + CFGCashXMsgSchemaMessageFormatter.formatRqstXmlPostamble(); String rspn = schema.sendReceive(Authorization, rqst); if ((rspn == null) || (rspn.length() <= 0)) { throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 0, "rspn"); } CFGCashXMsgRspnHandler responseHandler = schema.getResponseHandler(); responseHandler.parseStringContents(rspn); CFLibRuntimeException exceptionRaised = responseHandler.getExceptionRaised(); if (exceptionRaised != null) { throw exceptionRaised; } CFGCashSecAppBuff buff = null; Object lastObjectProcessed = responseHandler.getLastObjectProcessed(); if (lastObjectProcessed != null) { ICFGCashSecAppObj realized = null; if (lastObjectProcessed instanceof ICFGCashSecAppObj) { realized = (ICFGCashSecAppObj) lastObjectProcessed; } else { throw CFLib.getDefaultExceptionFactory().newUnsupportedClassException(getClass(), S_ProcName, "lastObjectProcessed", lastObjectProcessed, "ICFGCashSecAppObj"); } if (realized != null) { buff = realized.getSecAppBuff(); } } return (buff); } public CFGCashSecAppBuff[] readAllDerived(CFGCashAuthorization Authorization) { final String S_ProcName = "readAllDerived"; String rqst = CFGCashXMsgSchemaMessageFormatter.formatRqstXmlPreamble() + "\n" + "\t" + CFGCashXMsgSecAppMessageFormatter.formatSecAppRqstReadAll("\n\t\t\t") + "\n" + CFGCashXMsgSchemaMessageFormatter.formatRqstXmlPostamble(); String rspn = schema.sendReceive(Authorization, rqst); if ((rspn == null) || (rspn.length() <= 0)) { throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 0, "rspn"); } CFGCashXMsgRspnHandler 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<CFGCashSecAppPKey, ICFGCashSecAppObj> sortedMap = (SortedMap<CFGCashSecAppPKey, ICFGCashSecAppObj>) sortedMapObj; int sz = sortedMap.size(); CFGCashSecAppBuff arr[] = new CFGCashSecAppBuff[sz]; Iterator<ICFGCashSecAppObj> iter = sortedMap.values().iterator(); ICFGCashSecAppObj cur; for (int idx = 0; idx < sz; idx++) { cur = (ICFGCashSecAppObj) iter.next(); arr[idx] = cur.getSecAppBuff(); } return (arr); } public CFGCashSecAppBuff readDerivedByIdIdx(CFGCashAuthorization Authorization, long argClusterId, int argSecAppId) { final String S_ProcName = "readDerivedByIdIdx"; String rqst = CFGCashXMsgSchemaMessageFormatter.formatRqstXmlPreamble() + "\n" + "\t" + CFGCashXMsgSecAppMessageFormatter.formatSecAppRqstReadByIdIdx("\n\t\t\t", argClusterId, argSecAppId) + "\n" + CFGCashXMsgSchemaMessageFormatter.formatRqstXmlPostamble(); String rspn = schema.sendReceive(Authorization, rqst); if ((rspn == null) || (rspn.length() <= 0)) { throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 0, "rspn"); } CFGCashXMsgRspnHandler responseHandler = schema.getResponseHandler(); responseHandler.parseStringContents(rspn); CFLibRuntimeException exceptionRaised = responseHandler.getExceptionRaised(); if (exceptionRaised != null) { throw exceptionRaised; } CFGCashSecAppBuff buff = null; Object lastObjectProcessed = responseHandler.getLastObjectProcessed(); if (lastObjectProcessed != null) { ICFGCashSecAppObj realized = null; if (lastObjectProcessed instanceof ICFGCashSecAppObj) { realized = (ICFGCashSecAppObj) lastObjectProcessed; } else { throw CFLib.getDefaultExceptionFactory().newUnsupportedClassException(getClass(), S_ProcName, "lastObjectProcessed", lastObjectProcessed, "ICFGCashSecAppObj"); } if (realized != null) { buff = realized.getSecAppBuff(); } } return (buff); } public CFGCashSecAppBuff[] readDerivedByClusterIdx(CFGCashAuthorization Authorization, long argClusterId) { final String S_ProcName = "readDerivedByClusterIdx"; String rqst = CFGCashXMsgSchemaMessageFormatter.formatRqstXmlPreamble() + "\n" + "\t" + CFGCashXMsgSecAppMessageFormatter.formatSecAppRqstReadByClusterIdx("\n\t\t\t", argClusterId) + "\n" + CFGCashXMsgSchemaMessageFormatter.formatRqstXmlPostamble(); String rspn = schema.sendReceive(Authorization, rqst); if ((rspn == null) || (rspn.length() <= 0)) { throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 0, "rspn"); } CFGCashXMsgRspnHandler 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<CFGCashSecAppPKey, ICFGCashSecAppObj> sortedMap = (SortedMap<CFGCashSecAppPKey, ICFGCashSecAppObj>) sortedMapObj; int sz = sortedMap.size(); CFGCashSecAppBuff arr[] = new CFGCashSecAppBuff[sz]; Iterator<ICFGCashSecAppObj> iter = sortedMap.values().iterator(); ICFGCashSecAppObj cur; for (int idx = 0; idx < sz; idx++) { cur = (ICFGCashSecAppObj) iter.next(); arr[idx] = cur.getSecAppBuff(); } return (arr); } public CFGCashSecAppBuff readDerivedByUJEEMountIdx(CFGCashAuthorization Authorization, long argClusterId, String argJEEMountName) { final String S_ProcName = "readDerivedByUJEEMountIdx"; String rqst = CFGCashXMsgSchemaMessageFormatter.formatRqstXmlPreamble() + "\n" + "\t" + CFGCashXMsgSecAppMessageFormatter.formatSecAppRqstReadByUJEEMountIdx("\n\t\t\t", argClusterId, argJEEMountName) + "\n" + CFGCashXMsgSchemaMessageFormatter.formatRqstXmlPostamble(); String rspn = schema.sendReceive(Authorization, rqst); if ((rspn == null) || (rspn.length() <= 0)) { throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 0, "rspn"); } CFGCashXMsgRspnHandler responseHandler = schema.getResponseHandler(); responseHandler.parseStringContents(rspn); CFLibRuntimeException exceptionRaised = responseHandler.getExceptionRaised(); if (exceptionRaised != null) { throw exceptionRaised; } CFGCashSecAppBuff buff = null; Object lastObjectProcessed = responseHandler.getLastObjectProcessed(); if (lastObjectProcessed != null) { ICFGCashSecAppObj realized = null; if (lastObjectProcessed instanceof ICFGCashSecAppObj) { realized = (ICFGCashSecAppObj) lastObjectProcessed; } else { throw CFLib.getDefaultExceptionFactory().newUnsupportedClassException(getClass(), S_ProcName, "lastObjectProcessed", lastObjectProcessed, "ICFGCashSecAppObj"); } if (realized != null) { buff = realized.getSecAppBuff(); } } return (buff); } public CFGCashSecAppBuff readBuff(CFGCashAuthorization Authorization, CFGCashSecAppPKey PKey) { throw CFLib.getDefaultExceptionFactory().newNotSupportedException(getClass(), "readBuff"); } public CFGCashSecAppBuff lockBuff(CFGCashAuthorization Authorization, CFGCashSecAppPKey PKey) { throw CFLib.getDefaultExceptionFactory().newNotSupportedException(getClass(), "lockBuff"); } public CFGCashSecAppBuff[] readAllBuff(CFGCashAuthorization Authorization) { throw CFLib.getDefaultExceptionFactory().newNotSupportedException(getClass(), "readAllBuff"); } public CFGCashSecAppBuff readBuffByIdIdx(CFGCashAuthorization Authorization, long argClusterId, int argSecAppId) { throw CFLib.getDefaultExceptionFactory().newNotSupportedException(getClass(), "readBuffByIdIdx"); } public CFGCashSecAppBuff[] readBuffByClusterIdx(CFGCashAuthorization Authorization, long argClusterId) { throw CFLib.getDefaultExceptionFactory().newNotSupportedException(getClass(), "readBuffByClusterIdx"); } public CFGCashSecAppBuff readBuffByUJEEMountIdx(CFGCashAuthorization Authorization, long argClusterId, String argJEEMountName) { throw CFLib.getDefaultExceptionFactory().newNotSupportedException(getClass(), "readBuffByUJEEMountIdx"); } public void updateSecApp(CFGCashAuthorization Authorization, CFGCashSecAppBuff Buff) { final String S_ProcName = "updateSecApp"; String rqst = CFGCashXMsgSchemaMessageFormatter.formatRqstXmlPreamble() + "\n" + "\t" + CFGCashXMsgSecAppMessageFormatter.formatSecAppRqstUpdate("\n\t\t\t", Buff) + "\n" + CFGCashXMsgSchemaMessageFormatter.formatRqstXmlPostamble(); String rspn = schema.sendReceive(Authorization, rqst); if ((rspn == null) || (rspn.length() <= 0)) { throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 0, "rspn"); } CFGCashXMsgRspnHandler responseHandler = schema.getResponseHandler(); responseHandler.parseStringContents(rspn); CFLibRuntimeException exceptionRaised = responseHandler.getExceptionRaised(); if (exceptionRaised != null) { throw exceptionRaised; } CFGCashSecAppBuff buff = null; Object lastObjectProcessed = responseHandler.getLastObjectProcessed(); if (lastObjectProcessed != null) { ICFGCashSecAppObj realized = null; if (lastObjectProcessed instanceof ICFGCashSecAppObj) { realized = (ICFGCashSecAppObj) lastObjectProcessed; } else { throw CFLib.getDefaultExceptionFactory().newUnsupportedClassException(getClass(), S_ProcName, "lastObjectProcessed", lastObjectProcessed, "ICFGCashSecAppObj"); } if (realized != null) { buff = realized.getSecAppBuff(); } } if (buff != null) { Buff.set(buff); } } public void deleteSecApp(CFGCashAuthorization Authorization, CFGCashSecAppBuff Buff) { final String S_ProcName = "deleteSecApp"; String rqst = CFGCashXMsgSchemaMessageFormatter.formatRqstXmlPreamble() + "\n" + "\t" + CFGCashXMsgSecAppMessageFormatter.formatSecAppRqstDelete("\n\t\t\t", Buff) + "\n" + CFGCashXMsgSchemaMessageFormatter.formatRqstXmlPostamble(); String rspn = schema.sendReceive(Authorization, rqst); if ((rspn == null) || (rspn.length() <= 0)) { throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 0, "rspn"); } CFGCashXMsgRspnHandler 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 deleteSecAppByIdIdx(CFGCashAuthorization Authorization, long argClusterId, int argSecAppId) { final String S_ProcName = "deleteSecAppByIdIdx"; String rqst = CFGCashXMsgSchemaMessageFormatter.formatRqstXmlPreamble() + "\n" + "\t" + CFGCashXMsgSecAppMessageFormatter.formatSecAppRqstDeleteByIdIdx("\n\t\t\t", argClusterId, argSecAppId) + "\n" + CFGCashXMsgSchemaMessageFormatter.formatRqstXmlPostamble(); String rspn = schema.sendReceive(Authorization, rqst); if ((rspn == null) || (rspn.length() <= 0)) { throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 0, "rspn"); } CFGCashXMsgRspnHandler 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 deleteSecAppByIdIdx(CFGCashAuthorization Authorization, CFGCashSecAppPKey argKey) { deleteSecAppByIdIdx(Authorization, argKey.getRequiredClusterId(), argKey.getRequiredSecAppId()); } public void deleteSecAppByClusterIdx(CFGCashAuthorization Authorization, long argClusterId) { final String S_ProcName = "deleteSecAppByClusterIdx"; String rqst = CFGCashXMsgSchemaMessageFormatter.formatRqstXmlPreamble() + "\n" + "\t" + CFGCashXMsgSecAppMessageFormatter.formatSecAppRqstDeleteByClusterIdx("\n\t\t\t", argClusterId) + "\n" + CFGCashXMsgSchemaMessageFormatter.formatRqstXmlPostamble(); String rspn = schema.sendReceive(Authorization, rqst); if ((rspn == null) || (rspn.length() <= 0)) { throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 0, "rspn"); } CFGCashXMsgRspnHandler 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 deleteSecAppByClusterIdx(CFGCashAuthorization Authorization, CFGCashSecAppByClusterIdxKey argKey) { deleteSecAppByClusterIdx(Authorization, argKey.getRequiredClusterId()); } public void deleteSecAppByUJEEMountIdx(CFGCashAuthorization Authorization, long argClusterId, String argJEEMountName) { final String S_ProcName = "deleteSecAppByUJEEMountIdx"; String rqst = CFGCashXMsgSchemaMessageFormatter.formatRqstXmlPreamble() + "\n" + "\t" + CFGCashXMsgSecAppMessageFormatter.formatSecAppRqstDeleteByUJEEMountIdx("\n\t\t\t", argClusterId, argJEEMountName) + "\n" + CFGCashXMsgSchemaMessageFormatter.formatRqstXmlPostamble(); String rspn = schema.sendReceive(Authorization, rqst); if ((rspn == null) || (rspn.length() <= 0)) { throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 0, "rspn"); } CFGCashXMsgRspnHandler 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 deleteSecAppByUJEEMountIdx(CFGCashAuthorization Authorization, CFGCashSecAppByUJEEMountIdxKey argKey) { deleteSecAppByUJEEMountIdx(Authorization, argKey.getRequiredClusterId(), argKey.getRequiredJEEMountName()); } public CFGCashCursor openSecAppCursorAll(CFGCashAuthorization Authorization) { throw CFLib.getDefaultExceptionFactory().newNotSupportedException(getClass(), "openSecAppCursorAll"); } public CFGCashCursor openSecAppCursorByClusterIdx(CFGCashAuthorization Authorization, long argClusterId) { throw CFLib.getDefaultExceptionFactory().newNotSupportedException(getClass(), "openSecAppCursorByClusterIdx"); } public void closeSecAppCursor(CFGCashCursor Cursor) { throw CFLib.getDefaultExceptionFactory().newNotSupportedException(getClass(), "closeSecAppCursor"); } public CFGCashSecAppBuff nextSecAppCursor(CFGCashCursor Cursor) { throw CFLib.getDefaultExceptionFactory().newNotSupportedException(getClass(), "next$Tablename$Cursor"); } public CFGCashSecAppBuff prevSecAppCursor(CFGCashCursor Cursor) { throw CFLib.getDefaultExceptionFactory().newNotSupportedException(getClass(), "prevSecAppCursor"); } public CFGCashSecAppBuff firstSecAppCursor(CFGCashCursor Cursor) { throw CFLib.getDefaultExceptionFactory().newNotSupportedException(getClass(), "firstSecAppCursor"); } public CFGCashSecAppBuff lastSecAppCursor(CFGCashCursor Cursor) { throw CFLib.getDefaultExceptionFactory().newNotSupportedException(getClass(), "lastSecAppCursor"); } public CFGCashSecAppBuff nthSecAppCursor(CFGCashCursor Cursor, int Idx) { throw CFLib.getDefaultExceptionFactory().newNotSupportedException(getClass(), "nthSecAppCursor"); } /** * 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"); } }