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);
}
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);
}
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);
}
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);
}
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);
}
Aggregations