blob: d20063a8d64b57a7104a327f6c95748998a524e7 [file] [log] [blame]
package org.apache.archiva.redback.users.ldap;
/*
* 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.
*/
import org.apache.archiva.redback.common.ldap.LdapUtils;
import org.apache.archiva.redback.common.ldap.user.UserMapper;
import org.apache.archiva.redback.users.AbstractUserQuery;
public class LdapUserQuery
extends AbstractUserQuery
{
public void setFirstResult( int firstResult )
{
super.setFirstResult( firstResult );
throw new UnsupportedOperationException( "Result limiting is not yet supported for LDAP." );
}
public void setMaxResults( int maxResults )
{
super.setMaxResults( maxResults );
throw new UnsupportedOperationException( "Result limiting is not yet supported for LDAP." );
}
public void setOrderBy( String orderBy )
{
super.setOrderBy( orderBy );
throw new UnsupportedOperationException( "Free-form ordering is not yet supported for LDAP." );
}
public String getLdapFilter( UserMapper mapper )
{
String filter = "";
if (this.getEmail() != null )
{
filter += "(" + mapper.getEmailAddressAttribute() + "=" + LdapUtils.encodeFilterValue( this.getEmail() ) + ")";
}
if ( this.getFullName() != null )
{
filter += "(" + mapper.getUserFullNameAttribute() + "=" + LdapUtils.encodeFilterValue( this.getFullName() ) + ")";
}
filter += "(" + mapper.getUserIdAttribute() + "=" + ( this.getUsername() != null ? LdapUtils.encodeFilterValue( this.getUsername() ) : "*" ) + ")";
return filter;
}
}