Package org.apache.cocoon.portal.coplet.status

Examples of org.apache.cocoon.portal.coplet.status.MandatoryStatus


        CopletInstanceData cid = ((CopletLayout)layout).getCopletInstanceData();

        if (cid.getCopletData().isRemovable()) {
        }

        MandatoryStatus mandatory = (MandatoryStatus) this.getStatus(MandatoryStatus.class, ProfileManager.SESSION_STATUS, cid.getCopletData().getName());
        if ( mandatory == null || !mandatory.isMandatory()) {
            LayoutRemoveEvent lre = new LayoutRemoveEvent(layout, 0);
            XMLUtils.createElement(handler, "remove-uri", service.getLinkService().getLinkURI(lre));
        }
        context.invokeNext(layout, service, handler);
  }
View Full Code Here

TOP

Related Classes of org.apache.cocoon.portal.coplet.status.MandatoryStatus

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.