| | |
| | | import javax.swing.border.EmptyBorder; |
| | | import javax.swing.tree.TreePath; |
| | | |
| | | import org.opends.guitools.controlpanel.browser.BasicNodeError; |
| | | import org.opends.guitools.controlpanel.browser.BrowserController; |
| | | import org.opends.guitools.controlpanel.datamodel.ControlPanelInfo; |
| | | import org.opends.guitools.controlpanel.datamodel.CustomSearchResult; |
| | |
| | | } |
| | | |
| | | /** |
| | | * Displays a message informing that an error occurred resolving a referral. |
| | | * @param dn the DN of the local entry. |
| | | * @param referrals the list of referrals defined in the entry. |
| | | * @param error the error that occurred resolving the referral. |
| | | */ |
| | | public void referralSolveError(String dn, String[] referrals, |
| | | BasicNodeError error) |
| | | { |
| | | searchResult = null; |
| | | |
| | | errorSearchingPanel.setReferralError(dn, referrals, error); |
| | | |
| | | delete.setVisible(false); |
| | | saveChanges.setVisible(false); |
| | | |
| | | cardLayout.show(mainPanel, ERROR_SEARCHING); |
| | | |
| | | displayedEntryPanel = null; |
| | | } |
| | | |
| | | /** |
| | | * Displays a panel informing that nothing is selected. |
| | | * |
| | | */ |