public void deleteAuditActionByUDescrIdx( CFSecurityAuthorization Authorization, String argDescription) { final String S_ProcName = "deleteAuditActionByUDescrIdx"; String rqst = CFSecurityXMsgSchemaMessageFormatter.formatRqstXmlPreamble() + "\n" + "\t" + CFSecurityXMsgAuditActionMessageFormatter.formatAuditActionRqstDeleteByUDescrIdx( "\n\t\t\t", argDescription) + "\n" + CFSecurityXMsgSchemaMessageFormatter.formatRqstXmlPostamble(); try { schema.getCFTipClientHandler().issueAppRequest(rqst); } catch (BadPaddingException e) { throw CFLib.getDefaultExceptionFactory() .newRuntimeException( getClass(), S_ProcName, "Caught BadPaddingException - " + e.getMessage(), e); } catch (IllegalBlockSizeException e) { throw CFLib.getDefaultExceptionFactory() .newRuntimeException( getClass(), S_ProcName, "Caught IllegalBlockSizeException - " + e.getMessage(), e); } catch (InvalidKeyException e) { throw CFLib.getDefaultExceptionFactory() .newRuntimeException( getClass(), S_ProcName, "Caught InvalidKeyException - " + e.getMessage(), e); } catch (NoSuchAlgorithmException e) { throw CFLib.getDefaultExceptionFactory() .newRuntimeException( getClass(), S_ProcName, "Caught NoSuchAlgorithmException - " + e.getMessage(), e); } catch (InvalidAlgorithmParameterException e) { throw CFLib.getDefaultExceptionFactory() .newRuntimeException( getClass(), S_ProcName, "Caught InvalidAlgorithmParameterException - " + e.getMessage(), e); } catch (NoSuchPaddingException e) { throw CFLib.getDefaultExceptionFactory() .newRuntimeException( getClass(), S_ProcName, "Caught NoSuchPaddingException - " + e.getMessage(), e); } ICFTipResponseHandler responseHandler = schema.getCFTipClientHandler().getResponseHandler(); 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"); } }
/** * 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"); }
public CFSecurityAuditActionBuff nthAuditActionCursor(CFSecurityCursor Cursor, int Idx) { throw CFLib.getDefaultExceptionFactory() .newNotSupportedException(getClass(), "nthAuditActionCursor"); }
public void closeAuditActionCursor(CFSecurityCursor Cursor) { throw CFLib.getDefaultExceptionFactory() .newNotSupportedException(getClass(), "closeAuditActionCursor"); }
public CFSecurityCursor openAuditActionCursorAll(CFSecurityAuthorization Authorization) { throw CFLib.getDefaultExceptionFactory() .newNotSupportedException(getClass(), "openAuditActionCursorAll"); }
public void createAuditAction( CFSecurityAuthorization Authorization, CFSecurityAuditActionBuff Buff) { final String S_ProcName = "createAuditAction"; String rqst = CFSecurityXMsgSchemaMessageFormatter.formatRqstXmlPreamble() + "\n" + "\t" + CFSecurityXMsgAuditActionMessageFormatter.formatAuditActionRqstCreate( "\n\t\t\t", Buff) + "\n" + CFSecurityXMsgSchemaMessageFormatter.formatRqstXmlPostamble(); try { schema.getCFTipClientHandler().issueAppRequest(rqst); } catch (BadPaddingException e) { throw CFLib.getDefaultExceptionFactory() .newRuntimeException( getClass(), S_ProcName, "Caught BadPaddingException - " + e.getMessage(), e); } catch (IllegalBlockSizeException e) { throw CFLib.getDefaultExceptionFactory() .newRuntimeException( getClass(), S_ProcName, "Caught IllegalBlockSizeException - " + e.getMessage(), e); } catch (InvalidKeyException e) { throw CFLib.getDefaultExceptionFactory() .newRuntimeException( getClass(), S_ProcName, "Caught InvalidKeyException - " + e.getMessage(), e); } catch (NoSuchAlgorithmException e) { throw CFLib.getDefaultExceptionFactory() .newRuntimeException( getClass(), S_ProcName, "Caught NoSuchAlgorithmException - " + e.getMessage(), e); } catch (InvalidAlgorithmParameterException e) { throw CFLib.getDefaultExceptionFactory() .newRuntimeException( getClass(), S_ProcName, "Caught InvalidAlgorithmParameterException - " + e.getMessage(), e); } catch (NoSuchPaddingException e) { throw CFLib.getDefaultExceptionFactory() .newRuntimeException( getClass(), S_ProcName, "Caught NoSuchPaddingException - " + e.getMessage(), e); } ICFTipResponseHandler responseHandler = schema.getCFTipClientHandler().getResponseHandler(); CFLibRuntimeException exceptionRaised = responseHandler.getExceptionRaised(); if (exceptionRaised != null) { throw exceptionRaised; } Object lastObjectProcessed = responseHandler.getLastObjectProcessed(); if (lastObjectProcessed != null) { ICFSecurityAuditActionObj realized = null; if (lastObjectProcessed instanceof ICFSecurityAuditActionObj) { realized = (ICFSecurityAuditActionObj) lastObjectProcessed; } else { throw CFLib.getDefaultExceptionFactory() .newUnsupportedClassException( getClass(), S_ProcName, "lastObjectProcessed", lastObjectProcessed, "ICFSecurityAuditActionObj"); } if (realized != null) { Buff.set(realized.getAuditActionBuff()); } } else { throw CFLib.getDefaultExceptionFactory() .newNullArgumentException( getClass(), S_ProcName, 0, "responseHandler.getLastObjectProcessed()"); } }
public CFSecurityAuditActionBuff readBuffByUDescrIdx( CFSecurityAuthorization Authorization, String argDescription) { throw CFLib.getDefaultExceptionFactory() .newNotSupportedException(getClass(), "readBuffByUDescrIdx"); }
public CFSecurityAuditActionBuff readBuffByIdIdx( CFSecurityAuthorization Authorization, ICFSecuritySchema.AuditActionEnum argAuditActionId) { throw CFLib.getDefaultExceptionFactory() .newNotSupportedException(getClass(), "readBuffByIdIdx"); }
public CFSecurityAuditActionBuff[] readAllBuff(CFSecurityAuthorization Authorization) { throw CFLib.getDefaultExceptionFactory().newNotSupportedException(getClass(), "readAllBuff"); }
public CFSecurityAuditActionBuff lockBuff( CFSecurityAuthorization Authorization, CFSecurityAuditActionPKey PKey) { throw CFLib.getDefaultExceptionFactory().newNotSupportedException(getClass(), "lockBuff"); }
public CFSecurityAuditActionBuff[] readAllDerived(CFSecurityAuthorization Authorization) { final String S_ProcName = "readAllDerived"; String rqst = CFSecurityXMsgSchemaMessageFormatter.formatRqstXmlPreamble() + "\n" + "\t" + CFSecurityXMsgAuditActionMessageFormatter.formatAuditActionRqstReadAll("\n\t\t\t") + "\n" + CFSecurityXMsgSchemaMessageFormatter.formatRqstXmlPostamble(); try { schema.getCFTipClientHandler().issueAppRequest(rqst); } catch (BadPaddingException e) { throw CFLib.getDefaultExceptionFactory() .newRuntimeException( getClass(), S_ProcName, "Caught BadPaddingException - " + e.getMessage(), e); } catch (IllegalBlockSizeException e) { throw CFLib.getDefaultExceptionFactory() .newRuntimeException( getClass(), S_ProcName, "Caught IllegalBlockSizeException - " + e.getMessage(), e); } catch (InvalidKeyException e) { throw CFLib.getDefaultExceptionFactory() .newRuntimeException( getClass(), S_ProcName, "Caught InvalidKeyException - " + e.getMessage(), e); } catch (NoSuchAlgorithmException e) { throw CFLib.getDefaultExceptionFactory() .newRuntimeException( getClass(), S_ProcName, "Caught NoSuchAlgorithmException - " + e.getMessage(), e); } catch (InvalidAlgorithmParameterException e) { throw CFLib.getDefaultExceptionFactory() .newRuntimeException( getClass(), S_ProcName, "Caught InvalidAlgorithmParameterException - " + e.getMessage(), e); } catch (NoSuchPaddingException e) { throw CFLib.getDefaultExceptionFactory() .newRuntimeException( getClass(), S_ProcName, "Caught NoSuchPaddingException - " + e.getMessage(), e); } ICFTipResponseHandler responseHandler = schema.getCFTipClientHandler().getResponseHandler(); CFLibRuntimeException exceptionRaised = responseHandler.getExceptionRaised(); if (exceptionRaised != null) { throw exceptionRaised; } Object sortedListObj = responseHandler.getListOfObjects(); @SuppressWarnings("unchecked") List<ICFSecurityAuditActionObj> sortedList = (List<ICFSecurityAuditActionObj>) sortedListObj; CFSecurityAuditActionBuff arr[]; if (sortedList != null) { int sz = sortedList.size(); arr = new CFSecurityAuditActionBuff[sz]; Iterator<ICFSecurityAuditActionObj> iter = sortedList.iterator(); ICFSecurityAuditActionObj cur; for (int idx = 0; idx < sz; idx++) { cur = (ICFSecurityAuditActionObj) iter.next(); arr[idx] = cur.getAuditActionBuff(); } } else { arr = new CFSecurityAuditActionBuff[0]; } return (arr); }