View Javadoc

1   /*
2    * Copyright 2002-2005 the original author or authors.
3    *
4    * Licensed under the Apache License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    *
8    *      http://www.apache.org/licenses/LICENSE-2.0
9    *
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
15   */
16  
17  package net.sf.ldaptemplate;
18  
19  import javax.naming.Name;
20  import javax.naming.NamingException;
21  import javax.naming.directory.Attributes;
22  
23  /***
24   * Responsible for mapping from LDAP Attributes to beans.
25   * 
26   * @see net.sf.ldaptemplate.LdapTemplate#search(Name, String, AttributesMapper)
27   * @author Mattias Arthursson
28   */
29  public interface AttributesMapper {
30      /***
31       * Map Attributes to an object. The supplied attributes are the attributes
32       * from a single SearchResult.
33       * 
34       * @param attributes
35       *            attributes from a SearchResult.
36       * @return an object built from the attributes.
37       */
38      public Object mapFromAttributes(Attributes attributes)
39              throws NamingException;
40  }