Package uk.org.woodcraft.bookings.datamodel

Examples of uk.org.woodcraft.bookings.datamodel.DeleteRestricted


    if(! (getModel() instanceof DeleteRestricted))
    {
      return deleteNoConfirm();
    }
   
    DeleteRestricted objectToDelete = (DeleteRestricted) getModel();
   
    String preDeleteCheckError = objectToDelete.getDeleteConditionError(getClock());
    if(preDeleteCheckError.length() > 0)
    {
      addActionError(preDeleteCheckError);
      return ERROR;
    }

    if(objectToDelete.deleteRequiresConfirmation() && getConfirmDelete().length() == 0)
    {
      if (getCancelDelete().length() > 0)
        return "cancel-delete";
      else
        return "confirm-delete";   
View Full Code Here

TOP

Related Classes of uk.org.woodcraft.bookings.datamodel.DeleteRestricted

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.