Search in sources :

Example 6 with MappingEditorDialog

use of com.evolveum.midpoint.web.component.wizard.resource.component.schemahandling.modal.MappingEditorDialog in project midpoint by Evolveum.

the class ResourceAssociationEditor method outboundEditPerformed.

private void outboundEditPerformed(AjaxRequestTarget target) {
    MappingEditorDialog window = (MappingEditorDialog) get(ID_MODAL_OUTBOUND);
    window.updateModel(target, new PropertyModel<MappingType>(getModel(), "outbound"), false);
    window.show(target);
}
Also used : MappingEditorDialog(com.evolveum.midpoint.web.component.wizard.resource.component.schemahandling.modal.MappingEditorDialog)

Example 7 with MappingEditorDialog

use of com.evolveum.midpoint.web.component.wizard.resource.component.schemahandling.modal.MappingEditorDialog in project midpoint by Evolveum.

the class ResourceAttributeEditor method inboundEditPerformed.

private void inboundEditPerformed(AjaxRequestTarget target, MappingType mapping) {
    MappingEditorDialog window = (MappingEditorDialog) get(ID_MODAL_INBOUND);
    window.updateModel(target, mapping, true);
    window.show(target);
}
Also used : MappingEditorDialog(com.evolveum.midpoint.web.component.wizard.resource.component.schemahandling.modal.MappingEditorDialog)

Example 8 with MappingEditorDialog

use of com.evolveum.midpoint.web.component.wizard.resource.component.schemahandling.modal.MappingEditorDialog in project midpoint by Evolveum.

the class ResourceActivationEditor method mappingEditPerformed.

private void mappingEditPerformed(AjaxRequestTarget target, MappingType mapping, boolean isInbound) {
    MappingEditorDialog window = (MappingEditorDialog) get(ID_MODAL_MAPPING);
    window.updateModel(target, mapping, isInbound);
    window.show(target);
}
Also used : MappingEditorDialog(com.evolveum.midpoint.web.component.wizard.resource.component.schemahandling.modal.MappingEditorDialog)

Example 9 with MappingEditorDialog

use of com.evolveum.midpoint.web.component.wizard.resource.component.schemahandling.modal.MappingEditorDialog in project midpoint by Evolveum.

the class ResourceAttributeEditor method outboundEditPerformed.

private void outboundEditPerformed(AjaxRequestTarget target) {
    MappingEditorDialog window = (MappingEditorDialog) get(ID_MODAL_OUTBOUND);
    window.updateModel(target, new PropertyModel<MappingType>(getModel(), "outbound"), false);
    window.show(target);
}
Also used : MappingEditorDialog(com.evolveum.midpoint.web.component.wizard.resource.component.schemahandling.modal.MappingEditorDialog)

Example 10 with MappingEditorDialog

use of com.evolveum.midpoint.web.component.wizard.resource.component.schemahandling.modal.MappingEditorDialog in project midpoint by Evolveum.

the class ResourceCredentialsEditor method inboundEditPerformed.

private void inboundEditPerformed(AjaxRequestTarget target, MappingType mapping) {
    MappingEditorDialog window = (MappingEditorDialog) get(ID_MODAL_INBOUND);
    window.updateModel(target, mapping, false);
    window.show(target);
}
Also used : MappingEditorDialog(com.evolveum.midpoint.web.component.wizard.resource.component.schemahandling.modal.MappingEditorDialog)

Aggregations

MappingEditorDialog (com.evolveum.midpoint.web.component.wizard.resource.component.schemahandling.modal.MappingEditorDialog)11 AjaxRequestTarget (org.apache.wicket.ajax.AjaxRequestTarget)4 ModalWindow (org.apache.wicket.extensions.ajax.markup.html.modal.ModalWindow)4 LimitationsEditorDialog (com.evolveum.midpoint.web.component.wizard.resource.component.schemahandling.modal.LimitationsEditorDialog)2 ArrayList (java.util.ArrayList)2 List (java.util.List)2