| | |
| | | |
| | | package org.opends.guitools.statuspanel; |
| | | |
| | | import org.opends.messages.Message; |
| | | |
| | | import java.io.File; |
| | | import java.util.Set; |
| | | |
| | |
| | | private File installPath; |
| | | private String openDSVersion; |
| | | private String javaVersion; |
| | | private String errorMsg; |
| | | private Message errorMsg; |
| | | private boolean isAuthenticated; |
| | | |
| | | /** |
| | |
| | | * @return the error message that we encountered generating this server |
| | | * status descriptor. |
| | | */ |
| | | public String getErrorMessage() |
| | | public Message getErrorMessage() |
| | | { |
| | | return errorMsg; |
| | | } |
| | |
| | | * @param errorMsg the error message that we encountered generating this |
| | | * server status descriptor. |
| | | */ |
| | | public void setErrorMessage(String errorMsg) |
| | | public void setErrorMessage(Message errorMsg) |
| | | { |
| | | this.errorMsg = errorMsg; |
| | | } |