net.sourceforge.msscodefactory.v1_11.MSSBamRam.MSSBamRamPopSubDep3Table.java Source code

Java tutorial

Introduction

Here is the source code for net.sourceforge.msscodefactory.v1_11.MSSBamRam.MSSBamRamPopSubDep3Table.java

Source

// Description: Java6 in-memory RAM DbIO implementation for PopSubDep3.

/*
 *   MSS Code Factory 1.11
 *
 *   Copyright (c) 2012-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/>.
 *   
 * ***********************************************************************
 *
 *   $Revision$
 */

package net.sourceforge.msscodefactory.v1_11.MSSBamRam;

import java.sql.*;
import java.util.*;
import net.sourceforge.msscodefactory.cflib.v1_11.CFLib.*;
import org.apache.commons.codec.binary.Base64;
import net.sourceforge.msscodefactory.v1_11.MSSBam.*;
import net.sourceforge.msscodefactory.v1_11.MSSBamBL.*;
import net.sourceforge.msscodefactory.v1_11.MSSBamBLRam.*;

/*
 *   MSSBamRamPopSubDep3Table in-memory RAM DbIO implementation
 *   for PopSubDep3.
 */
public class MSSBamRamPopSubDep3Table implements IMSSBamPopSubDep3Table {
    private MSSBamBLRamSchema schema;
    private Map<MSSBamAnyObjPKey, MSSBamPopSubDep3Buff> dictByPKey = new HashMap<MSSBamAnyObjPKey, MSSBamPopSubDep3Buff>();
    private SortedMap<MSSBamPopSubDep3ByContPopDep2IdxKey, SortedMap<MSSBamAnyObjPKey, MSSBamPopSubDep3Buff>> dictByContPopDep2Idx = new TreeMap<MSSBamPopSubDep3ByContPopDep2IdxKey, SortedMap<MSSBamAnyObjPKey, MSSBamPopSubDep3Buff>>();

    public MSSBamRamPopSubDep3Table(MSSBamBLRamSchema argSchema) {
        schema = argSchema;
    }

    public void createPopSubDep3(MSSBamAuthorization Authorization, MSSBamPopSubDep3Buff Buff) {
        MSSBamAnyObjPKey pkey = schema.getFactoryAnyObj().newPKey();

        pkey.setClassCode(Buff.getClassCode());

        pkey.setRequiredId(Buff.getRequiredId());

        MSSBamPopSubDep3ByContPopDep2IdxKey keyContPopDep2Idx = schema.getFactoryPopSubDep3()
                .newContPopDep2IdxKey();
        keyContPopDep2Idx.setRequiredContPopDep2Id(Buff.getRequiredContPopDep2Id());

        // Validate unique indexes

        if (dictByPKey.containsKey(pkey)) {
            throw CFLib.getDefaultExceptionFactory().newPrimaryKeyNotNewException(getClass(), "createPopSubDep3",
                    pkey);
        }

        // Validate foreign keys

        {
            boolean allNull = true;
            allNull = false;
            if (!allNull) {
                if (null == schema.getTablePopDep().readDerivedByIdIdx(Authorization, Buff.getRequiredId())) {
                    throw CFLib.getDefaultExceptionFactory().newUnresolvedRelationException(getClass(),
                            "createPopSubDep3", "Superclass", "SuperClass", "PopDep", null);
                }
            }
        }

        {
            boolean allNull = true;
            allNull = false;
            if (!allNull) {
                if (null == schema.getTablePopSubDep2().readDerivedByIdIdx(Authorization,
                        Buff.getRequiredContPopDep2Id())) {
                    throw CFLib.getDefaultExceptionFactory().newUnresolvedRelationException(getClass(),
                            "createPopSubDep3", "Container", "ContPopSubDep3", "PopSubDep2", null);
                }
            }
        }

        // Proceed with adding the new record

        dictByPKey.put(pkey, Buff);

        SortedMap<MSSBamAnyObjPKey, MSSBamPopSubDep3Buff> subdictContPopDep2Idx;
        if (dictByContPopDep2Idx.containsKey(keyContPopDep2Idx)) {
            subdictContPopDep2Idx = dictByContPopDep2Idx.get(keyContPopDep2Idx);
        } else {
            subdictContPopDep2Idx = new TreeMap<MSSBamAnyObjPKey, MSSBamPopSubDep3Buff>();
            dictByContPopDep2Idx.put(keyContPopDep2Idx, subdictContPopDep2Idx);
        }
        subdictContPopDep2Idx.put(pkey, Buff);

    }

    public MSSBamPopSubDep3Buff readDerived(MSSBamAuthorization Authorization, MSSBamAnyObjPKey PKey) {
        final String S_ProcName = "MSSBamRamPopSubDep3.readDerived() ";
        MSSBamAnyObjPKey key = schema.getFactoryAnyObj().newPKey();
        key.setRequiredId(PKey.getRequiredId());
        MSSBamPopSubDep3Buff buff;
        if (dictByPKey.containsKey(key)) {
            buff = dictByPKey.get(key);
        } else {
            buff = null;
        }
        return (buff);
    }

    public MSSBamPopSubDep3Buff lockDerived(MSSBamAuthorization Authorization, MSSBamAnyObjPKey PKey) {
        final String S_ProcName = "MSSBamRamPopSubDep3.readDerived() ";
        MSSBamAnyObjPKey key = schema.getFactoryAnyObj().newPKey();
        key.setRequiredId(PKey.getRequiredId());
        MSSBamPopSubDep3Buff buff;
        if (dictByPKey.containsKey(key)) {
            buff = dictByPKey.get(key);
        } else {
            buff = null;
        }
        return (buff);
    }

    public MSSBamPopSubDep3Buff[] readAllDerived(MSSBamAuthorization Authorization) {
        final String S_ProcName = "MSSBamRamPopSubDep3.readAllDerived() ";
        MSSBamPopSubDep3Buff[] retList = new MSSBamPopSubDep3Buff[dictByPKey.values().size()];
        Iterator<MSSBamPopSubDep3Buff> iter = dictByPKey.values().iterator();
        int idx = 0;
        while (iter.hasNext()) {
            retList[idx++] = iter.next();
        }
        return (retList);
    }

    public MSSBamPopSubDep3Buff[] readDerivedByTenantIdx(MSSBamAuthorization Authorization, long TenantId) {
        final String S_ProcName = "MSSBamRamAnyObj.readDerivedByTenantIdx() ";
        MSSBamAnyObjBuff buffList[] = schema.getTableAnyObj().readDerivedByTenantIdx(Authorization, TenantId);
        if (buffList == null) {
            return (null);
        } else {
            MSSBamAnyObjBuff buff;
            ArrayList<MSSBamPopSubDep3Buff> filteredList = new ArrayList<MSSBamPopSubDep3Buff>();
            for (int idx = 0; idx < buffList.length; idx++) {
                buff = buffList[idx];
                if ((buff != null) && (buff instanceof MSSBamPopSubDep3Buff)) {
                    filteredList.add((MSSBamPopSubDep3Buff) buff);
                }
            }
            return (filteredList.toArray(new MSSBamPopSubDep3Buff[0]));
        }
    }

    public MSSBamPopSubDep3Buff[] readDerivedByScopeIdx(MSSBamAuthorization Authorization, Long ScopeId) {
        final String S_ProcName = "MSSBamRamAnyObj.readDerivedByScopeIdx() ";
        MSSBamAnyObjBuff buffList[] = schema.getTableAnyObj().readDerivedByScopeIdx(Authorization, ScopeId);
        if (buffList == null) {
            return (null);
        } else {
            MSSBamAnyObjBuff buff;
            ArrayList<MSSBamPopSubDep3Buff> filteredList = new ArrayList<MSSBamPopSubDep3Buff>();
            for (int idx = 0; idx < buffList.length; idx++) {
                buff = buffList[idx];
                if ((buff != null) && (buff instanceof MSSBamPopSubDep3Buff)) {
                    filteredList.add((MSSBamPopSubDep3Buff) buff);
                }
            }
            return (filteredList.toArray(new MSSBamPopSubDep3Buff[0]));
        }
    }

    public MSSBamPopSubDep3Buff[] readDerivedByDefSchemaIdx(MSSBamAuthorization Authorization, Long DefSchemaId) {
        final String S_ProcName = "MSSBamRamAnyObj.readDerivedByDefSchemaIdx() ";
        MSSBamAnyObjBuff buffList[] = schema.getTableAnyObj().readDerivedByDefSchemaIdx(Authorization, DefSchemaId);
        if (buffList == null) {
            return (null);
        } else {
            MSSBamAnyObjBuff buff;
            ArrayList<MSSBamPopSubDep3Buff> filteredList = new ArrayList<MSSBamPopSubDep3Buff>();
            for (int idx = 0; idx < buffList.length; idx++) {
                buff = buffList[idx];
                if ((buff != null) && (buff instanceof MSSBamPopSubDep3Buff)) {
                    filteredList.add((MSSBamPopSubDep3Buff) buff);
                }
            }
            return (filteredList.toArray(new MSSBamPopSubDep3Buff[0]));
        }
    }

    public MSSBamPopSubDep3Buff[] readDerivedByAuthorIdx(MSSBamAuthorization Authorization, Long AuthorId) {
        final String S_ProcName = "MSSBamRamAnyObj.readDerivedByAuthorIdx() ";
        MSSBamAnyObjBuff buffList[] = schema.getTableAnyObj().readDerivedByAuthorIdx(Authorization, AuthorId);
        if (buffList == null) {
            return (null);
        } else {
            MSSBamAnyObjBuff buff;
            ArrayList<MSSBamPopSubDep3Buff> filteredList = new ArrayList<MSSBamPopSubDep3Buff>();
            for (int idx = 0; idx < buffList.length; idx++) {
                buff = buffList[idx];
                if ((buff != null) && (buff instanceof MSSBamPopSubDep3Buff)) {
                    filteredList.add((MSSBamPopSubDep3Buff) buff);
                }
            }
            return (filteredList.toArray(new MSSBamPopSubDep3Buff[0]));
        }
    }

    public MSSBamPopSubDep3Buff readDerivedByUNameIdx(MSSBamAuthorization Authorization, Long ScopeId,
            String Name) {
        final String S_ProcName = "MSSBamRamAnyObj.readDerivedByUNameIdx() ";
        MSSBamAnyObjBuff buff = schema.getTableAnyObj().readDerivedByUNameIdx(Authorization, ScopeId, Name);
        if (buff == null) {
            return (null);
        } else if (buff instanceof MSSBamPopSubDep3Buff) {
            return ((MSSBamPopSubDep3Buff) buff);
        } else {
            return (null);
        }
    }

    public MSSBamPopSubDep3Buff[] readDerivedByRelationIdx(MSSBamAuthorization Authorization, long RelationId) {
        final String S_ProcName = "MSSBamRamPopDep.readDerivedByRelationIdx() ";
        MSSBamPopDepBuff buffList[] = schema.getTablePopDep().readDerivedByRelationIdx(Authorization, RelationId);
        if (buffList == null) {
            return (null);
        } else {
            MSSBamPopDepBuff buff;
            ArrayList<MSSBamPopSubDep3Buff> filteredList = new ArrayList<MSSBamPopSubDep3Buff>();
            for (int idx = 0; idx < buffList.length; idx++) {
                buff = buffList[idx];
                if ((buff != null) && (buff instanceof MSSBamPopSubDep3Buff)) {
                    filteredList.add((MSSBamPopSubDep3Buff) buff);
                }
            }
            return (filteredList.toArray(new MSSBamPopSubDep3Buff[0]));
        }
    }

    public MSSBamPopSubDep3Buff[] readDerivedByContPopDep2Idx(MSSBamAuthorization Authorization,
            long ContPopDep2Id) {
        final String S_ProcName = "MSSBamRamPopSubDep3.readDerivedByContPopDep2Idx() ";
        MSSBamPopSubDep3ByContPopDep2IdxKey key = schema.getFactoryPopSubDep3().newContPopDep2IdxKey();
        key.setRequiredContPopDep2Id(ContPopDep2Id);

        MSSBamPopSubDep3Buff[] recArray;
        if (dictByContPopDep2Idx.containsKey(key)) {
            SortedMap<MSSBamAnyObjPKey, MSSBamPopSubDep3Buff> subdictContPopDep2Idx = dictByContPopDep2Idx.get(key);
            recArray = new MSSBamPopSubDep3Buff[subdictContPopDep2Idx.size()];
            Iterator<MSSBamPopSubDep3Buff> iter = subdictContPopDep2Idx.values().iterator();
            int idx = 0;
            while (iter.hasNext()) {
                recArray[idx++] = iter.next();
            }
        } else {
            recArray = new MSSBamPopSubDep3Buff[0];
        }
        return (recArray);
    }

    public MSSBamPopSubDep3Buff readDerivedByIdIdx(MSSBamAuthorization Authorization, long Id) {
        final String S_ProcName = "MSSBamRamAnyObj.readDerivedByIdIdx() ";
        MSSBamAnyObjPKey key = schema.getFactoryAnyObj().newPKey();
        key.setRequiredId(Id);

        MSSBamPopSubDep3Buff buff;
        if (dictByPKey.containsKey(key)) {
            buff = dictByPKey.get(key);
        } else {
            buff = null;
        }
        return (buff);
    }

    public MSSBamPopSubDep3Buff readBuff(MSSBamAuthorization Authorization, MSSBamAnyObjPKey PKey) {
        final String S_ProcName = "MSSBamRamPopSubDep3.readBuff() ";
        MSSBamPopSubDep3Buff buff = readDerived(Authorization, PKey);
        if ((buff != null) && (!buff.getClassCode().equals("POP3"))) {
            buff = null;
        }
        return (buff);
    }

    public MSSBamPopSubDep3Buff lockBuff(MSSBamAuthorization Authorization, MSSBamAnyObjPKey PKey) {
        final String S_ProcName = "MSSBamRamPopSubDep3.readBuff() ";
        MSSBamPopSubDep3Buff buff = readDerived(Authorization, PKey);
        if ((buff != null) && (!buff.getClassCode().equals("POP3"))) {
            buff = null;
        }
        return (buff);
    }

    public MSSBamPopSubDep3Buff[] readAllBuff(MSSBamAuthorization Authorization) {
        final String S_ProcName = "MSSBamRamPopSubDep3.readAllBuff() ";
        MSSBamPopSubDep3Buff buff;
        ArrayList<MSSBamPopSubDep3Buff> filteredList = new ArrayList<MSSBamPopSubDep3Buff>();
        MSSBamPopSubDep3Buff[] buffList = readAllDerived(Authorization);
        for (int idx = 0; idx < buffList.length; idx++) {
            buff = buffList[idx];
            if ((buff != null) && buff.getClassCode().equals("POP3")) {
                filteredList.add(buff);
            }
        }
        return (filteredList.toArray(new MSSBamPopSubDep3Buff[0]));
    }

    public MSSBamPopSubDep3Buff readBuffByIdIdx(MSSBamAuthorization Authorization, long Id) {
        final String S_ProcName = "MSSBamRamAnyObj.readBuffByIdIdx() ";
        MSSBamAnyObjBuff buff = readDerivedByIdIdx(Authorization, Id);
        if ((buff != null) && buff.getClassCode().equals("ANYO")) {
            return ((MSSBamPopSubDep3Buff) buff);
        } else {
            return (null);
        }
    }

    public MSSBamPopSubDep3Buff[] readBuffByTenantIdx(MSSBamAuthorization Authorization, long TenantId) {
        final String S_ProcName = "MSSBamRamAnyObj.readBuffByTenantIdx() ";
        MSSBamAnyObjBuff buff;
        ArrayList<MSSBamPopSubDep3Buff> filteredList = new ArrayList<MSSBamPopSubDep3Buff>();
        MSSBamAnyObjBuff[] buffList = readDerivedByTenantIdx(Authorization, TenantId);
        for (int idx = 0; idx < buffList.length; idx++) {
            buff = buffList[idx];
            if ((buff != null) && buff.getClassCode().equals("ANYO")) {
                filteredList.add((MSSBamPopSubDep3Buff) buff);
            }
        }
        return (filteredList.toArray(new MSSBamPopSubDep3Buff[0]));
    }

    public MSSBamPopSubDep3Buff[] readBuffByScopeIdx(MSSBamAuthorization Authorization, Long ScopeId) {
        final String S_ProcName = "MSSBamRamAnyObj.readBuffByScopeIdx() ";
        MSSBamAnyObjBuff buff;
        ArrayList<MSSBamPopSubDep3Buff> filteredList = new ArrayList<MSSBamPopSubDep3Buff>();
        MSSBamAnyObjBuff[] buffList = readDerivedByScopeIdx(Authorization, ScopeId);
        for (int idx = 0; idx < buffList.length; idx++) {
            buff = buffList[idx];
            if ((buff != null) && buff.getClassCode().equals("ANYO")) {
                filteredList.add((MSSBamPopSubDep3Buff) buff);
            }
        }
        return (filteredList.toArray(new MSSBamPopSubDep3Buff[0]));
    }

    public MSSBamPopSubDep3Buff[] readBuffByDefSchemaIdx(MSSBamAuthorization Authorization, Long DefSchemaId) {
        final String S_ProcName = "MSSBamRamAnyObj.readBuffByDefSchemaIdx() ";
        MSSBamAnyObjBuff buff;
        ArrayList<MSSBamPopSubDep3Buff> filteredList = new ArrayList<MSSBamPopSubDep3Buff>();
        MSSBamAnyObjBuff[] buffList = readDerivedByDefSchemaIdx(Authorization, DefSchemaId);
        for (int idx = 0; idx < buffList.length; idx++) {
            buff = buffList[idx];
            if ((buff != null) && buff.getClassCode().equals("ANYO")) {
                filteredList.add((MSSBamPopSubDep3Buff) buff);
            }
        }
        return (filteredList.toArray(new MSSBamPopSubDep3Buff[0]));
    }

    public MSSBamPopSubDep3Buff[] readBuffByAuthorIdx(MSSBamAuthorization Authorization, Long AuthorId) {
        final String S_ProcName = "MSSBamRamAnyObj.readBuffByAuthorIdx() ";
        MSSBamAnyObjBuff buff;
        ArrayList<MSSBamPopSubDep3Buff> filteredList = new ArrayList<MSSBamPopSubDep3Buff>();
        MSSBamAnyObjBuff[] buffList = readDerivedByAuthorIdx(Authorization, AuthorId);
        for (int idx = 0; idx < buffList.length; idx++) {
            buff = buffList[idx];
            if ((buff != null) && buff.getClassCode().equals("ANYO")) {
                filteredList.add((MSSBamPopSubDep3Buff) buff);
            }
        }
        return (filteredList.toArray(new MSSBamPopSubDep3Buff[0]));
    }

    public MSSBamPopSubDep3Buff readBuffByUNameIdx(MSSBamAuthorization Authorization, Long ScopeId, String Name) {
        final String S_ProcName = "MSSBamRamAnyObj.readBuffByUNameIdx() ";
        MSSBamAnyObjBuff buff = readDerivedByUNameIdx(Authorization, ScopeId, Name);
        if ((buff != null) && buff.getClassCode().equals("ANYO")) {
            return ((MSSBamPopSubDep3Buff) buff);
        } else {
            return (null);
        }
    }

    public MSSBamPopSubDep3Buff[] readBuffByRelationIdx(MSSBamAuthorization Authorization, long RelationId) {
        final String S_ProcName = "MSSBamRamPopDep.readBuffByRelationIdx() ";
        MSSBamPopDepBuff buff;
        ArrayList<MSSBamPopSubDep3Buff> filteredList = new ArrayList<MSSBamPopSubDep3Buff>();
        MSSBamPopDepBuff[] buffList = readDerivedByRelationIdx(Authorization, RelationId);
        for (int idx = 0; idx < buffList.length; idx++) {
            buff = buffList[idx];
            if ((buff != null) && buff.getClassCode().equals("POPD")) {
                filteredList.add((MSSBamPopSubDep3Buff) buff);
            }
        }
        return (filteredList.toArray(new MSSBamPopSubDep3Buff[0]));
    }

    public MSSBamPopSubDep3Buff[] readBuffByContPopDep2Idx(MSSBamAuthorization Authorization, long ContPopDep2Id) {
        final String S_ProcName = "MSSBamRamPopSubDep3.readBuffByContPopDep2Idx() ";
        MSSBamPopSubDep3Buff buff;
        ArrayList<MSSBamPopSubDep3Buff> filteredList = new ArrayList<MSSBamPopSubDep3Buff>();
        MSSBamPopSubDep3Buff[] buffList = readDerivedByContPopDep2Idx(Authorization, ContPopDep2Id);
        for (int idx = 0; idx < buffList.length; idx++) {
            buff = buffList[idx];
            if ((buff != null) && buff.getClassCode().equals("POP3")) {
                filteredList.add((MSSBamPopSubDep3Buff) buff);
            }
        }
        return (filteredList.toArray(new MSSBamPopSubDep3Buff[0]));
    }

    public void updatePopSubDep3(MSSBamAuthorization Authorization, MSSBamPopSubDep3Buff Buff) {
        MSSBamAnyObjPKey pkey = schema.getFactoryAnyObj().newPKey();
        pkey.setRequiredId(Buff.getRequiredId());
        MSSBamPopSubDep3Buff existing = dictByPKey.get(pkey);
        if (existing == null) {
            throw CFLib.getDefaultExceptionFactory().newStaleCacheDetectedException(getClass(), "updatePopSubDep3",
                    "Existing record not found", "PopSubDep3", pkey);
        }
        MSSBamPopSubDep3ByContPopDep2IdxKey existingKeyContPopDep2Idx = schema.getFactoryPopSubDep3()
                .newContPopDep2IdxKey();
        existingKeyContPopDep2Idx.setRequiredContPopDep2Id(existing.getRequiredContPopDep2Id());

        MSSBamPopSubDep3ByContPopDep2IdxKey newKeyContPopDep2Idx = schema.getFactoryPopSubDep3()
                .newContPopDep2IdxKey();
        newKeyContPopDep2Idx.setRequiredContPopDep2Id(Buff.getRequiredContPopDep2Id());

        // Check unique indexes

        // Validate foreign keys

        {
            boolean allNull = true;

            if (allNull) {
                if (null == schema.getTablePopDep().readDerivedByIdIdx(Authorization, Buff.getRequiredId())) {
                    throw CFLib.getDefaultExceptionFactory().newUnresolvedRelationException(getClass(),
                            "updatePopSubDep3", "Superclass", "SuperClass", "PopDep", null);
                }
            }
        }

        {
            boolean allNull = true;

            if (allNull) {
                if (null == schema.getTablePopSubDep2().readDerivedByIdIdx(Authorization,
                        Buff.getRequiredContPopDep2Id())) {
                    throw CFLib.getDefaultExceptionFactory().newUnresolvedRelationException(getClass(),
                            "updatePopSubDep3", "Container", "ContPopSubDep3", "PopSubDep2", null);
                }
            }
        }

        // Update is valid

        SortedMap<MSSBamAnyObjPKey, MSSBamPopSubDep3Buff> subdict;

        dictByPKey.remove(pkey);
        dictByPKey.put(pkey, Buff);

        subdict = dictByContPopDep2Idx.get(existingKeyContPopDep2Idx);
        if (subdict != null) {
            subdict.remove(pkey);
        }
        if (dictByContPopDep2Idx.containsKey(newKeyContPopDep2Idx)) {
            subdict = dictByContPopDep2Idx.get(newKeyContPopDep2Idx);
        } else {
            subdict = new TreeMap<MSSBamAnyObjPKey, MSSBamPopSubDep3Buff>();
            dictByContPopDep2Idx.put(newKeyContPopDep2Idx, subdict);
        }
        subdict.put(pkey, Buff);

    }

    public void deletePopSubDep3(MSSBamAuthorization Authorization, MSSBamPopSubDep3Buff Buff) {
        final String S_ProcName = "MSSBamRamPopSubDep3Table.deletePopSubDep3() ";
        MSSBamAnyObjPKey pkey = schema.getFactoryAnyObj().newPKey();

        pkey.setRequiredId(schema.nextAnyObjIdGen());
        MSSBamPopSubDep3Buff existing = dictByPKey.get(pkey);
        if (existing == null) {
            throw CFLib.getDefaultExceptionFactory().newStaleCacheDetectedException(getClass(), "deletePopSubDep3",
                    "Existing record not found", "PopSubDep3", pkey);
        }
        if (existing.getRequiredRevision() != Buff.getRequiredRevision()) {
            throw CFLib.getDefaultExceptionFactory().newCollisionDetectedException(getClass(), "deletePopSubDep3",
                    pkey);
        }
        MSSBamPopSubDep3ByContPopDep2IdxKey keyContPopDep2Idx = schema.getFactoryPopSubDep3()
                .newContPopDep2IdxKey();
        keyContPopDep2Idx.setRequiredContPopDep2Id(existing.getRequiredContPopDep2Id());

        // Validate reverse foreign keys

        // Delete is valid

        SortedMap<MSSBamAnyObjPKey, MSSBamPopSubDep3Buff> subdict;

        dictByPKey.remove(pkey);

        subdict = dictByContPopDep2Idx.get(keyContPopDep2Idx);
        subdict.remove(pkey);

    }

    public MSSBamCursor openPopSubDep3CursorAll(MSSBamAuthorization Authorization) {
        MSSBamCursor cursor = new MSSBamRamPopSubDep3Cursor(Authorization, schema, dictByPKey.values());
        return (cursor);
    }

    public MSSBamCursor openPopSubDep3CursorByContPopDep2Idx(MSSBamAuthorization Authorization,
            long ContPopDep2Id) {
        MSSBamCursor cursor;
        MSSBamPopSubDep3ByContPopDep2IdxKey key = schema.getFactoryPopSubDep3().newContPopDep2IdxKey();
        key.setRequiredContPopDep2Id(ContPopDep2Id);

        if (dictByContPopDep2Idx.containsKey(key)) {
            SortedMap<MSSBamAnyObjPKey, MSSBamPopSubDep3Buff> subdictContPopDep2Idx = dictByContPopDep2Idx.get(key);
            cursor = new MSSBamRamPopSubDep3Cursor(Authorization, schema, subdictContPopDep2Idx.values());
        } else {
            cursor = new MSSBamRamPopSubDep3Cursor(Authorization, schema, new ArrayList<MSSBamPopSubDep3Buff>());
        }
        return (cursor);
    }

    public void closePopSubDep3Cursor(MSSBamCursor Cursor) {
        // Cursor.DataReader.Close();
    }

    public MSSBamPopSubDep3Buff nextPopSubDep3Cursor(MSSBamCursor Cursor) {
        MSSBamRamPopSubDep3Cursor cursor = (MSSBamRamPopSubDep3Cursor) Cursor;
        MSSBamPopSubDep3Buff rec = cursor.getCursor().next();
        cursor.setRowIdx(cursor.getRowIdx() + 1);
        return (rec);
    }

    public MSSBamPopSubDep3Buff prevPopSubDep3Cursor(MSSBamCursor Cursor) {
        int targetRowIdx = (Cursor.getRowIdx() > 1) ? Cursor.getRowIdx() - 1 : 1;
        MSSBamPopSubDep3Buff rec = null;
        if (Cursor.getRowIdx() >= targetRowIdx) {
            Cursor.reset();
        }
        while (Cursor.getRowIdx() < targetRowIdx) {
            rec = nextPopSubDep3Cursor(Cursor);
        }
        return (rec);
    }

    public MSSBamPopSubDep3Buff firstPopSubDep3Cursor(MSSBamCursor Cursor) {
        int targetRowIdx = 1;
        MSSBamPopSubDep3Buff rec = null;
        Cursor.reset();
        while (Cursor.getRowIdx() < targetRowIdx) {
            rec = nextPopSubDep3Cursor(Cursor);
        }
        return (rec);
    }

    public MSSBamPopSubDep3Buff lastPopSubDep3Cursor(MSSBamCursor Cursor) {
        throw CFLib.getDefaultExceptionFactory().newNotImplementedYetException(getClass(), "lastPopSubDep3Cursor");
    }

    public MSSBamPopSubDep3Buff nthPopSubDep3Cursor(MSSBamCursor Cursor, int Idx) {
        int targetRowIdx = Idx;
        MSSBamPopSubDep3Buff rec = null;
        if (Cursor.getRowIdx() >= targetRowIdx) {
            Cursor.reset();
        }
        while (Cursor.getRowIdx() < targetRowIdx) {
            rec = nextPopSubDep3Cursor(Cursor);
        }
        return (rec);
    }
}