Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -35,44 +35,44 @@ public class Item implements Serializable {
* Attribute schema to be mapped. Consider other we can associate tha same attribute schema more than once, with
* different aliases, to different resource attributes.
*/
private String intAttrName;
protected String intAttrName;

/**
* External resource's field to be mapped.
*/
private String extAttrName;
protected String extAttrName;

/**
* Specify if the mapped target resource's field is the key.
*/
private boolean connObjectKey;
protected boolean connObjectKey;

/**
* Specify if the mapped target resource's field is the password.
*/
private boolean password;
protected boolean password;

/**
* Specify if the mapped target resource's field is nullable.
*/
private String mandatoryCondition = "false";
protected String mandatoryCondition = "false";

/**
* Mapping purposes.
*/
private MappingPurpose purpose;
protected MappingPurpose purpose;

/**
* (Optional) JEXL expression to apply to values before propagation.
*/
private String propagationJEXLTransformer;
protected String propagationJEXLTransformer;

/**
* (Optional) JEXL expression to apply to values before pull.
*/
private String pullJEXLTransformer;
protected String pullJEXLTransformer;

private final List<String> transformers = new ArrayList<>();
protected final List<String> transformers = new ArrayList<>();

public boolean isConnObjectKey() {
return connObjectKey;
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,83 @@
/*
* 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.panels.mapping.SCIMExtentionMappingPanel;
import org.apache.syncope.client.ui.commons.markup.html.form.AjaxTextFieldPanel;
import org.apache.syncope.common.lib.scim.SCIMConf;
import org.apache.syncope.common.lib.scim.SCIMExtensionUserConf;
import org.apache.wicket.markup.html.form.Form;
import org.apache.wicket.model.Model;
import org.apache.wicket.model.PropertyModel;
import org.apache.wicket.model.util.ListModel;

public class SCIMConfExtensionUserPanel extends SCIMConfTabPanel {

private static final long serialVersionUID = 2459231778083046011L;

private final SCIMExtensionUserConf scimExtensionUserConf;

public SCIMConfExtensionUserPanel(final String id, final SCIMConf scimConf) {
super(id);

if (scimConf.getExtensionUserConf() == null) {
scimConf.setExtensionUserConf(new SCIMExtensionUserConf());
}
scimExtensionUserConf = scimConf.getExtensionUserConf();

AjaxTextFieldPanel namePanel = new AjaxTextFieldPanel("name", "name", new PropertyModel<>("name", "name") {

private static final long serialVersionUID = 7389942851813193481L;

@Override
public String getObject() {
return scimExtensionUserConf.getName();
}

@Override
public void setObject(final String object) {
scimExtensionUserConf.setName(object);
}
});
add(namePanel);

AjaxTextFieldPanel descriptionPanel = new AjaxTextFieldPanel("description", "description",
new PropertyModel<>("description", "description") {

private static final long serialVersionUID = -5911179251497048661L;

@Override
public String getObject() {
return scimExtensionUserConf.getDescription();
}

@Override
public void setObject(final String object) {
scimExtensionUserConf.setDescription(object);
}
});
add(descriptionPanel);

SCIMExtentionMappingPanel extentionMappingPanel = new SCIMExtentionMappingPanel(
"mapping", new ListModel<>(scimExtensionUserConf.getAttributes()));
Form<SCIMExtensionUserConf> form = new Form<>("form", new Model<>(scimExtensionUserConf));
form.add(extentionMappingPanel);
add(form);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,12 @@
import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;
import org.apache.syncope.client.console.SyncopeConsoleSession;
import org.apache.syncope.client.console.commons.ITabComponent;
import org.apache.syncope.client.console.pages.BasePage;
import org.apache.syncope.client.console.rest.SCIMConfRestClient;
import org.apache.syncope.client.console.wizards.WizardMgtPanel;
import org.apache.syncope.client.ui.commons.Constants;
import org.apache.syncope.common.lib.scim.SCIMConf;
import org.apache.wicket.PageReference;
import org.apache.wicket.ajax.AjaxRequestTarget;
Expand Down Expand Up @@ -72,7 +75,14 @@ public SCIMConfPanel(

@Override
public void onClick(final AjaxRequestTarget target) {
scimConfRestClient.set(SCIMConfPanel.this.scimConfTO);
try {
scimConfRestClient.set(SCIMConfPanel.this.scimConfTO);
SyncopeConsoleSession.get().success(getString(Constants.OPERATION_SUCCEEDED));
} catch (Exception e) {
LOG.error("While setting SCIM configuration", e);
SyncopeConsoleSession.get().onException(e);
}
((BasePage) pageRef.getPage()).getNotificationPanel().refresh(target);
}
};
addInnerObject(saveButton);
Expand Down Expand Up @@ -136,6 +146,22 @@ public boolean isVisible() {
tabs.add(new ITabComponent(
new Model<>(getString("tab4")), getString("tab4")) {

private static final long serialVersionUID = 6645614456650987567L;

@Override
public WebMarkupContainer getPanel(final String panelId) {
return new SCIMConfExtensionUserPanel(panelId, scimConfTO);
}

@Override
public boolean isVisible() {
return true;
}
});

tabs.add(new ITabComponent(
new Model<>(getString("tab5")), getString("tab5")) {

private static final long serialVersionUID = 1998052474181916792L;

@Override
Expand Down
Loading