Package org.apache.syncope.console.commons.status

Examples of org.apache.syncope.console.commons.status.StatusUtils


        connObjectWin.setInitialHeight(CONNOBJECT_WIN_HEIGHT);
        connObjectWin.setInitialWidth(CONNOBJECT_WIN_WIDTH);
        connObjectWin.setCookieName("connobject-modal");
        add(connObjectWin);

        statusUtils = new StatusUtils(subject instanceof RoleTO ? roleRestClient : userRestClient);

        connObjects = statusUtils.getConnectorObjects(subject);

        final List<StatusBean> statusBeans = new ArrayList<StatusBean>(connObjects.size() + 1);
        initialStatusBeanMap = new LinkedHashMap<String, StatusBean>(connObjects.size() + 1);
View Full Code Here


    }

    private ResultStatusModalPage(final Builder builder) {
        super();
        this.subject = builder.subject;
        statusUtils = new StatusUtils(this.userRestClient);
        if (builder.mode == null) {
            this.mode = UserModalPage.Mode.ADMIN;
        } else {
            this.mode = builder.mode;
        }
View Full Code Here

        this.pageRef = pageRef;
        this.window = window;
        this.resourceTO = resourceTO;
        this.typeRef = typeRef;

        statusUtils = new StatusUtils((UserTO.class.isAssignableFrom(typeRef) ? userRestClient : roleRestClient));

        final List<IColumn<StatusBean, String>> columns = new ArrayList<IColumn<StatusBean, String>>();
        columns.add(new PropertyColumn<StatusBean, String>(
                new StringResourceModel("id", this, null, "Attributable id"),
                "attributableId", "attributableId"));
View Full Code Here

        this.pageRef = pageRef;
        this.window = window;
        this.statusOnly = statusOnly;
        this.subjectTO = subjectTO;

        statusUtils = new StatusUtils(subjectTO instanceof UserTO ? userRestClient : roleRestClient);

        columns = new ArrayList<IColumn<StatusBean, String>>();
        columns.add(new AbstractColumn<StatusBean, String>(
                new StringResourceModel("resourceName", this, null, "Resource name"), "resourceName") {
View Full Code Here

TOP

Related Classes of org.apache.syncope.console.commons.status.StatusUtils

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.