blob: 26de86db1b395eedcc8b1ccf532f295cc9f34f0d [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.common.lib.attr;
import java.util.HashMap;
import java.util.Map;
import org.apache.syncope.common.lib.AbstractLDAPConf;
public class LDAPAttrRepoConf extends AbstractLDAPConf implements AttrRepoConf {
private static final long serialVersionUID = -471527731042579422L;
/**
* Map of attributes to fetch from the database.
* Attributes are defined using a key-value structure
* where CAS allows the attribute name/key to be renamed virtually
* to a different attribute. The key is the attribute fetched
* from the data source and the value is the attribute name CAS should
* use for virtual renames.
*/
private final Map<String, String> attributes = new HashMap<>(0);
/**
* Whether all existing attributes should be passed
* down to the query builder map and be used in the construction
* of the filter.
*/
private boolean useAllQueryAttributes = true;
/**
* Define a {@code Map} of query attribute names to data-layer attribute names to use when building the query.
* The key is always the name of the query attribute that is defined by CAS and passed internally,
* and the value is the column/field that should map.
*/
private final Map<String, String> queryAttributes = new HashMap<>(0);
public boolean isUseAllQueryAttributes() {
return useAllQueryAttributes;
}
public void setUseAllQueryAttributes(final boolean useAllQueryAttributes) {
this.useAllQueryAttributes = useAllQueryAttributes;
}
public Map<String, String> getAttributes() {
return attributes;
}
public Map<String, String> getQueryAttributes() {
return queryAttributes;
}
@Override
public Map<String, Object> map(final Mapper mapper) {
return mapper.map(this);
}
}