public String getSqlSelectSecAppDistinctClassCode() {
   if (S_sqlSelectSecAppDistinctClassCode == null) {
     S_sqlSelectSecAppDistinctClassCode =
         "SELECT "
             + "DISTINCT sapp.ClassCode "
             + "FROM "
             + schema.getLowerDbSchemaName()
             + ".SecApp AS sapp ";
   }
   return (S_sqlSelectSecAppDistinctClassCode);
 }
 public String getSqlSelectSecAppBuff() {
   if (S_sqlSelectSecAppBuff == null) {
     S_sqlSelectSecAppBuff =
         "SELECT "
             + "sapp.ClusterId, "
             + "sapp.SecAppId, "
             + "sapp.JEEMountName, "
             + "sapp.Revision "
             + "FROM "
             + schema.getLowerDbSchemaName()
             + ".SecApp AS sapp ";
   }
   return (S_sqlSelectSecAppBuff);
 }