| | |
| | | * information: "Portions Copyright [year] [name of copyright owner]". |
| | | * |
| | | * Copyright 2008-2010 Sun Microsystems, Inc. |
| | | * Portions Copyright 2015 ForgeRock AS. |
| | | * Portions Copyright 2015-2016 ForgeRock AS. |
| | | */ |
| | | |
| | | package org.opends.guitools.controlpanel.ui.nodes; |
| | |
| | | |
| | | import org.opends.server.types.LDAPURL; |
| | | |
| | | /** |
| | | * Interface used in the LDAP entries browser code to deal with entries. |
| | | * |
| | | */ |
| | | /** Interface used in the LDAP entries browser code to deal with entries. */ |
| | | public interface BrowserNodeInfo { |
| | | |
| | | /** |
| | |
| | | * current server. An entry is declared 'remote' when the host/port of |
| | | * getURL() is different from the host/port of the DirContext associated to |
| | | * the browser controller. Returns <CODE>false</CODE> otherwise. |
| | | * |
| | | */ |
| | | boolean isRemote(); |
| | | |
| | |
| | | */ |
| | | String[] getObjectClassValues(); |
| | | |
| | | /** |
| | | * Error types |
| | | */ |
| | | /** Error types. */ |
| | | /** No error happened. */ |
| | | int ERROR_NONE = 0; |
| | | /** And error reading the entry occurred. */ |