public List getAssignmentsWhere(SharkTransaction trans, String sqlWhere) throws PersistenceException {
Debug.logInfo(">>>>>>>>>>>>>>>>>>>>>>> getAssignmentsWhere(SharkTransaction trans, String sqlWhere)",module);
Debug.logInfo(">>>>>>>>>>>>>>>>>>>>>>> sqlWhere = " + sqlWhere ,module);
if (sqlWhere != null) {
Debug.log("Call : Attempt to call getAssignmentsWhere() - " + sqlWhere, module);
throw new PersistenceException("Method not available to this implementation! (" + sqlWhere + ")");
}
return this.getAllAssignments(trans);
}