org.apache.syncope.client.console.pages.CamelRouteModalPage.java Source code

Java tutorial

Introduction

Here is the source code for org.apache.syncope.client.console.pages.CamelRouteModalPage.java

Source

/*
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 *
 *   http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied.  See the License for the
 * specific language governing permissions and limitations
 * under the License.
 */
package org.apache.syncope.client.console.pages;

import org.apache.syncope.client.console.commons.Constants;
import org.apache.syncope.client.console.rest.CamelRouteRestClient;
import org.apache.syncope.common.lib.SyncopeClientException;
import org.apache.syncope.common.lib.to.CamelRouteTO;
import org.apache.syncope.common.lib.types.Entitlement;
import org.apache.wicket.PageReference;
import org.apache.wicket.ajax.AjaxRequestTarget;
import org.apache.wicket.ajax.markup.html.form.AjaxButton;
import org.apache.wicket.authroles.authorization.strategies.role.metadata.MetaDataRoleAuthorizationStrategy;
import org.apache.wicket.extensions.ajax.markup.html.IndicatingAjaxButton;
import org.apache.wicket.extensions.ajax.markup.html.modal.ModalWindow;
import org.apache.wicket.markup.html.form.Form;
import org.apache.wicket.markup.html.form.TextArea;
import org.apache.wicket.model.CompoundPropertyModel;
import org.apache.wicket.model.Model;
import org.apache.wicket.model.PropertyModel;
import org.apache.wicket.spring.injection.annot.SpringBean;

public class CamelRouteModalPage extends BaseModalPage {

    private static final long serialVersionUID = -1438441210568592931L;

    @SpringBean
    private CamelRouteRestClient restClient;

    public CamelRouteModalPage(final PageReference pageRef, final ModalWindow window, final CamelRouteTO routeTO,
            final boolean createFlag) {

        Form<CamelRouteTO> routeForm = new Form<>("routeDefForm");

        final TextArea<String> routeDefArea = new TextArea<>("content",
                new PropertyModel<String>(routeTO, "content"));

        routeForm.add(routeDefArea);
        routeForm.setModel(new CompoundPropertyModel<>(routeTO));

        AjaxButton submit = new IndicatingAjaxButton(APPLY, new Model<>(getString(SUBMIT)), routeForm) {

            private static final long serialVersionUID = -958724007591692537L;

            @Override
            protected void onSubmit(final AjaxRequestTarget target, final Form<?> form) {
                try {
                    restClient.update(routeTO.getKey(), ((CamelRouteTO) form.getModelObject()).getContent());
                    info(getString(Constants.OPERATION_SUCCEEDED));

                    // Uncomment with something similar once SYNCOPE-156 is completed
                    // Configuration callerPage = (Configuration) pageRef.getPage();
                    // callerPage.setModalResult(true);
                    window.close(target);
                } catch (SyncopeClientException scee) {
                    error(getString(Constants.ERROR) + ": " + scee.getMessage());
                }
                target.add(feedbackPanel);
            }

            @Override
            protected void onError(final AjaxRequestTarget target, final Form<?> form) {
                target.add(feedbackPanel);
            }

        };

        MetaDataRoleAuthorizationStrategy.authorize(submit, ENABLE, Entitlement.ROUTE_UPDATE);
        routeForm.add(submit);

        this.add(routeForm);
    }
}