| | |
| | | import org.forgerock.opendj.ldap.schema.AttributeType; |
| | | import org.forgerock.opendj.ldap.DN; |
| | | import org.opends.server.types.ObjectClass; |
| | | import org.opends.server.types.OpenDsException; |
| | | import org.opends.server.types.Schema; |
| | | |
| | | import com.forgerock.opendj.util.OperatingSystem; |
| | |
| | | private String instancePath; |
| | | private String openDSVersion; |
| | | private String javaVersion; |
| | | private ArrayList<OpenDsException> exceptions = new ArrayList<>(); |
| | | private ArrayList<Exception> exceptions = new ArrayList<>(); |
| | | private boolean isWindowsServiceEnabled; |
| | | private boolean isSchemaEnabled; |
| | | private Schema schema; |
| | |
| | | * Returns the exceptions that occurred while reading the configuration. |
| | | * @return the exceptions that occurred while reading the configuration. |
| | | */ |
| | | public List<OpenDsException> getExceptions() |
| | | public List<Exception> getExceptions() |
| | | { |
| | | return Collections.unmodifiableList(exceptions); |
| | | } |
| | |
| | | * @param exceptions exceptions that occurred while reading the |
| | | * configuration. |
| | | */ |
| | | public void setExceptions(Collection<OpenDsException> exceptions) |
| | | public void setExceptions(Collection<Exception> exceptions) |
| | | { |
| | | this.exceptions.clear(); |
| | | this.exceptions.addAll(exceptions); |