Package org.apache.syncope.console.pages.panels

Examples of org.apache.syncope.console.pages.panels.RoleSearchPanel.buildFIQL()


            private static final long serialVersionUID = -958724007591692537L;

            @Override
            protected void onSubmitInternal(final AjaxRequestTarget target, final Form<?> form) {
                final String fiql = searchPanel.buildFIQL();
                LOG.debug("Node condition {}", fiql);

                doSearch(target, fiql, searchResult);

                Session.get().getFeedbackMessages().clear();
View Full Code Here


            protected void onSubmit(final AjaxRequestTarget target, final Form<?> form) {
                notificationTO.setUserAbout(
                        !checkAbout.getModelObject() && checkUserAbout.getModelObject() ? userAbout.buildFIQL() : null);
                notificationTO.setRoleAbout(
                        !checkAbout.getModelObject()
                        && checkRoleAbout.getModelObject() ? roleAbout.buildFIQL() : null);
                notificationTO.setRecipients(checkRecipients.getModelObject() ? recipients.buildFIQL() : null);
                notificationTO.getStaticRecipients().removeAll(Collections.singleton(null));

                try {
                    if (createFlag) {
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.