Java tutorial
/** * SAHARA Scheduling Server * * Schedules and assigns local laboratory rigs. * * @license See LICENSE in the top level directory for complete license terms. * * Copyright (c) 2010, University of Technology, Sydney * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * * Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the University of Technology, Sydney nor the names * of its contributors may be used to endorse or promote products derived from * this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * * @author Michael Diponio (mdiponio) * @date 14th March 2010 */ package au.edu.uts.eng.remotelabs.schedserver.dataaccess.dao; import java.io.Serializable; import org.hibernate.Criteria; import org.hibernate.Session; import org.hibernate.criterion.Projections; import org.hibernate.criterion.Restrictions; import au.edu.uts.eng.remotelabs.schedserver.dataaccess.entities.AcademicPermission; import au.edu.uts.eng.remotelabs.schedserver.dataaccess.entities.ResourcePermission; import au.edu.uts.eng.remotelabs.schedserver.dataaccess.entities.UserAssociation; import au.edu.uts.eng.remotelabs.schedserver.dataaccess.entities.UserClass; import au.edu.uts.eng.remotelabs.schedserver.dataaccess.entities.UserClassKey; /** * Data access object for user class entities. */ public class UserClassDao extends GenericDao<UserClass> { public UserClassDao() { super(UserClass.class); } public UserClassDao(Session ses) { super(ses, UserClass.class); } /** * Gets the user with the specified name. * * @param name name of user class * @return user class or null if not found */ public UserClass findByName(String name) { Criteria cri = this.session.createCriteria(UserClass.class); cri.add(Restrictions.eq("name", name)); return (UserClass) cri.uniqueResult(); } @Override public void delete(Serializable id) { UserClass uc = this.get(id); if (uc != null) this.delete(uc); } @Override public void delete(UserClass uc) { /* Delete any access keys. */ if (uc.getKeys().size() > 0) { UserClassKeyDao keyDao = new UserClassKeyDao(this.session); for (UserClassKey key : uc.getKeys()) { keyDao.delete(key); } } /* Delete all the user associations. */ this.deleteUserAssociations(uc); /* Delete all associated resource permissions. */ if (uc.getResourcePermissions().size() > 0) { ResourcePermissionDao resPermDao = new ResourcePermissionDao(this.session); for (ResourcePermission perm : uc.getResourcePermissions()) { resPermDao.delete(perm); } } /* Delete all the academic permissions. */ if (uc.getAcademicPermissions().size() > 0) { this.session.beginTransaction(); for (AcademicPermission ap : uc.getAcademicPermissions()) { this.logger.debug("Deleting academic permissions for '" + ap.getUser().qName() + "' during delete of " + "user class '" + uc.getName() + "'."); this.session.delete(ap); } this.session.getTransaction().commit(); } super.delete(uc); } /** * Deletes all the user associations that contain the specified user class. * * @param uc user class whose associations to delete */ public void deleteUserAssociations(UserClass uc) { int num = (Integer) this.session.createCriteria(UserAssociation.class).add(Restrictions.eq("userClass", uc)) .setProjection(Projections.count("user")).uniqueResult(); if (num > 0) { /* Delete all user associations. */ this.logger.debug("To delete user class '" + uc.getName() + "', " + num + " user associations have to" + " removed."); this.session.beginTransaction(); int numDeleted = this.session.createQuery("delete UserAssociation ua where ua.userClass = :userclass") .setEntity("userclass", uc).executeUpdate(); this.logger.info("Deleted " + numDeleted + " user associations when deleting user class '" + uc.getName() + "'."); this.session.getTransaction().commit(); } } }