public void deleteClearDepByTableIdx(
     CFSecurityAuthorization Authorization, long argTenantId, long argRelationId) {
   final String S_ProcName = "deleteClearDepByTableIdx";
   String rqst =
       CFBamXMsgSchemaMessageFormatter.formatRqstXmlPreamble()
           + "\n"
           + "\t"
           + CFBamXMsgClearDepMessageFormatter.formatClearDepRqstDeleteByTableIdx(
               "\n\t\t\t", argTenantId, argRelationId)
           + "\n"
           + CFBamXMsgSchemaMessageFormatter.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");
   }
 }
 public CFBamDataScopeBuff[] readAllBuff(CFSecurityAuthorization Authorization) {
   throw CFLib.getDefaultExceptionFactory().newNotSupportedException(getClass(), "readAllBuff");
 }
 public CFBamDataScopeBuff lockBuff(
     CFSecurityAuthorization Authorization, CFBamDataScopePKey PKey) {
   throw CFLib.getDefaultExceptionFactory().newNotSupportedException(getClass(), "lockBuff");
 }
 public CFBamDataScopeBuff[] readAllDerived(CFSecurityAuthorization Authorization) {
   final String S_ProcName = "readAllDerived";
   String rqst =
       CFBamXMsgSchemaMessageFormatter.formatRqstXmlPreamble()
           + "\n"
           + "\t"
           + CFBamXMsgDataScopeMessageFormatter.formatDataScopeRqstReadAll("\n\t\t\t")
           + "\n"
           + CFBamXMsgSchemaMessageFormatter.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();
   if (sortedListObj == null) {
     throw CFLib.getDefaultExceptionFactory()
         .newNullArgumentException(getClass(), S_ProcName, 0, "responseHandler.getListOfObjects");
   }
   @SuppressWarnings("unchecked")
   List<ICFBamDataScopeObj> sortedList = (List<ICFBamDataScopeObj>) sortedListObj;
   int sz = sortedList.size();
   CFBamDataScopeBuff arr[] = new CFBamDataScopeBuff[sz];
   Iterator<ICFBamDataScopeObj> iter = sortedList.iterator();
   ICFBamDataScopeObj cur;
   for (int idx = 0; idx < sz; idx++) {
     cur = (ICFBamDataScopeObj) iter.next();
     arr[idx] = cur.getDataScopeBuff();
   }
   return (arr);
 }
 public CFBamClearDepBuff lastClearDepCursor(CFSecurityCursor Cursor) {
   throw CFLib.getDefaultExceptionFactory()
       .newNotSupportedException(getClass(), "lastClearDepCursor");
 }
 public CFSecurityClusterBuff readBuffByIdIdx(CFSecurityAuthorization Authorization, long argId) {
   throw CFLib.getDefaultExceptionFactory()
       .newNotSupportedException(getClass(), "readBuffByIdIdx");
 }
 public CFBamDataScopeBuff nthDataScopeCursor(CFSecurityCursor Cursor, int Idx) {
   throw CFLib.getDefaultExceptionFactory()
       .newNotSupportedException(getClass(), "nthDataScopeCursor");
 }
 public CFSecurityCursor openDataScopeCursorAll(CFSecurityAuthorization Authorization) {
   throw CFLib.getDefaultExceptionFactory()
       .newNotSupportedException(getClass(), "openDataScopeCursorAll");
 }
 public CFBamClearDepBuff readBuff(CFSecurityAuthorization Authorization, CFBamScopePKey PKey) {
   throw CFLib.getDefaultExceptionFactory().newNotSupportedException(getClass(), "readBuff");
 }
 public CFBamClearDepBuff readDerivedByIdIdx(
     CFSecurityAuthorization Authorization, long argTenantId, long argId) {
   final String S_ProcName = "readDerivedByIdIdx";
   String rqst =
       CFBamXMsgSchemaMessageFormatter.formatRqstXmlPreamble()
           + "\n"
           + "\t"
           + CFBamXMsgClearDepMessageFormatter.formatClearDepRqstReadByIdIdx(
               "\n\t\t\t", argTenantId, argId)
           + "\n"
           + CFBamXMsgSchemaMessageFormatter.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;
   }
   CFBamClearDepBuff buff = null;
   Object lastObjectProcessed = responseHandler.getLastObjectProcessed();
   if (lastObjectProcessed != null) {
     ICFBamClearDepObj realized = null;
     if (lastObjectProcessed instanceof ICFBamClearDepObj) {
       realized = (ICFBamClearDepObj) lastObjectProcessed;
     } else {
       throw CFLib.getDefaultExceptionFactory()
           .newUnsupportedClassException(
               getClass(),
               S_ProcName,
               "lastObjectProcessed",
               lastObjectProcessed,
               "ICFBamClearDepObj");
     }
     if (realized != null) {
       buff = realized.getClearDepBuff();
     }
   }
   return (buff);
 }
 public CFSecurityClusterBuff nthClusterCursor(CFSecurityCursor Cursor, int Idx) {
   throw CFLib.getDefaultExceptionFactory()
       .newNotSupportedException(getClass(), "nthClusterCursor");
 }
 public long nextSecGroupMemberIdGen(CFSecurityAuthorization Authorization, long argId) {
   throw CFLib.getDefaultExceptionFactory()
       .newNotSupportedException(getClass(), "nextSecGroupMemberIdGen");
 }
 public int nextSecGroupIdGen(CFSecurityAuthorization Authorization, CFSecurityClusterPKey PKey) {
   throw CFLib.getDefaultExceptionFactory()
       .newNotSupportedException(getClass(), "nextSecGroupIdGen");
 }
 public CFSecurityClusterBuff readBuffByUDescrIdx(
     CFSecurityAuthorization Authorization, String argDescription) {
   throw CFLib.getDefaultExceptionFactory()
       .newNotSupportedException(getClass(), "readBuffByUDescrIdx");
 }
 public CFBamDataScopeBuff readBuffByUNameIdx(
     CFSecurityAuthorization Authorization, String argName) {
   throw CFLib.getDefaultExceptionFactory()
       .newNotSupportedException(getClass(), "readBuffByUNameIdx");
 }
 public void createDataScope(CFSecurityAuthorization Authorization, CFBamDataScopeBuff Buff) {
   final String S_ProcName = "createDataScope";
   String rqst =
       CFBamXMsgSchemaMessageFormatter.formatRqstXmlPreamble()
           + "\n"
           + "\t"
           + CFBamXMsgDataScopeMessageFormatter.formatDataScopeRqstCreate("\n\t\t\t", Buff)
           + "\n"
           + CFBamXMsgSchemaMessageFormatter.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) {
     ICFBamDataScopeObj realized = null;
     if (lastObjectProcessed instanceof ICFBamDataScopeObj) {
       realized = (ICFBamDataScopeObj) lastObjectProcessed;
     } else {
       throw CFLib.getDefaultExceptionFactory()
           .newUnsupportedClassException(
               getClass(),
               S_ProcName,
               "lastObjectProcessed",
               lastObjectProcessed,
               "ICFBamDataScopeObj");
     }
     if (realized != null) {
       Buff.set(realized.getDataScopeBuff());
     }
   } else {
     throw CFLib.getDefaultExceptionFactory()
         .newNullArgumentException(
             getClass(), S_ProcName, 0, "responseHandler.getLastObjectProcessed()");
   }
 }
 public CFBamClearDepBuff[] readBuffByTableIdx(
     CFSecurityAuthorization Authorization, long argTenantId, long argRelationId) {
   throw CFLib.getDefaultExceptionFactory()
       .newNotSupportedException(getClass(), "readBuffByTableIdx");
 }
 public void closeDataScopeCursor(CFSecurityCursor Cursor) {
   throw CFLib.getDefaultExceptionFactory()
       .newNotSupportedException(getClass(), "closeDataScopeCursor");
 }
 public CFSecurityCursor openClearDepCursorByTableIdx(
     CFSecurityAuthorization Authorization, long argTenantId, long argRelationId) {
   throw CFLib.getDefaultExceptionFactory()
       .newNotSupportedException(getClass(), "openClearDepCursorByTableIdx");
 }
 /**
  * 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 CFSecurityClusterBuff readBuff(
     CFSecurityAuthorization Authorization, CFSecurityClusterPKey PKey) {
   throw CFLib.getDefaultExceptionFactory().newNotSupportedException(getClass(), "readBuff");
 }