1 20 21 package org.apache.directory.ldapstudio.browser.core.model; 22 23 24 import java.io.Serializable ; 25 26 import org.apache.directory.ldapstudio.browser.core.propertypageproviders.ConnectionPropertyPageProvider; 27 import org.apache.directory.ldapstudio.browser.core.propertypageproviders.EntryPropertyPageProvider; 28 import org.eclipse.core.runtime.IAdaptable; 29 30 31 public interface ISearchResult extends Serializable , IAdaptable, EntryPropertyPageProvider, 32 ConnectionPropertyPageProvider 33 { 34 35 40 public DN getDn(); 41 42 43 48 public IAttribute[] getAttributes(); 49 50 51 58 public IAttribute getAttribute( String attributeDescription ); 59 60 61 68 public AttributeHierarchy getAttributeWithSubtypes( String attributeDescription ); 69 70 71 76 public IEntry getEntry(); 77 78 79 84 public ISearch getSearch(); 85 86 87 public void setSearch( ISearch search ); 88 89 } 90 | Popular Tags |