blob: 177fdf1380f24997908ad9356e7f6d85f3644cd8 [file] [log] [blame]
/*
* 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.panels;
import org.apache.syncope.client.console.SyncopeConsoleSession;
import org.apache.syncope.client.console.rest.UserRequestRestClient;
import org.apache.syncope.client.console.wicket.markup.html.bootstrap.dialog.BaseModal;
import org.apache.syncope.client.ui.commons.Constants;
import org.apache.syncope.client.ui.commons.pages.BaseWebPage;
import org.apache.syncope.client.ui.commons.panels.SubmitableModalPanel;
import org.apache.syncope.client.ui.commons.panels.WizardModalPanel;
import org.apache.syncope.common.lib.to.UserRequestForm;
import org.apache.wicket.PageReference;
import org.apache.wicket.ajax.AjaxRequestTarget;
import org.apache.wicket.markup.html.panel.Panel;
import org.apache.wicket.spring.injection.annot.SpringBean;
public class UserRequestFormModal extends Panel implements SubmitableModalPanel, WizardModalPanel<UserRequestForm> {
private static final long serialVersionUID = -8847854414429745216L;
@SpringBean
protected UserRequestRestClient userRequestRestClient;
protected final BaseModal<?> modal;
protected final UserRequestForm formTO;
protected final PageReference pageRef;
public UserRequestFormModal(final BaseModal<?> modal, final PageReference pageRef, final UserRequestForm formTO) {
super(BaseModal.CONTENT_ID);
this.modal = modal;
this.formTO = formTO;
this.pageRef = pageRef;
MultilevelPanel mlp = new MultilevelPanel("userRequestForm");
mlp.setFirstLevel(new UserRequestFormPanel(MultilevelPanel.FIRST_LEVEL_ID, formTO) {
private static final long serialVersionUID = -2195387360323687302L;
@Override
protected void viewDetails(final AjaxRequestTarget target) {
mlp.next(getString("userRequest.details"), new UserRequestFormDetails(pageRef, formTO), target);
}
});
add(mlp);
}
@Override
public void onSubmit(final AjaxRequestTarget target) {
userRequestRestClient.submitForm(formTO);
this.modal.show(false);
this.modal.close(target);
SyncopeConsoleSession.get().success(getString(Constants.OPERATION_SUCCEEDED));
}
@Override
public void onError(final AjaxRequestTarget target) {
((BaseWebPage) pageRef.getPage()).getNotificationPanel().refresh(target);
}
@Override
public UserRequestForm getItem() {
return this.formTO;
}
}