Package org.apache.isis.viewer.scimpi.dispatcher.action

Examples of org.apache.isis.viewer.scimpi.dispatcher.action.RequiredPropertyException


        final String value = request.getOptionalProperty("value");
        final boolean isClear = request.getOptionalProperty("action", "set").equals("clear");
        final String expiresString = request.getOptionalProperty("expires", "-1");

        if (!isClear && value == null) {
            throw new RequiredPropertyException("Property not set: " + value);
        }
        if (isClear) {
            request.appendDebug("cookie: " + name + " (cleared)");
            request.getContext().addCookie(name, null, 0);
        } else {
View Full Code Here

TOP

Related Classes of org.apache.isis.viewer.scimpi.dispatcher.action.RequiredPropertyException

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.