Examples of NotAllowedException


Examples of service.exception.NotAllowedException

    @Override
    public void saveAppointment(Lva appointment, User responsibleUser) throws NotAllowedException {
        Lva real = getRealAppointment(appointment);

        if (real != null && real.isDeleted() && !real.getLecturer().equals(responsibleUser) && responsibleUser != User.ADMIN) {
            throw new NotAllowedException();
        }

        delegate.saveAppointment(appointment, responsibleUser);
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.