Enum D2JapiErrorCode

    • Enum Constant Detail

      • OBJECT_ALLREADY_EXIST

        public static final D2JapiErrorCode OBJECT_ALLREADY_EXIST
      • SHARED_ACCESS_ERROR

        public static final D2JapiErrorCode SHARED_ACCESS_ERROR
      • OBJECT_IS_READ_ONLY

        public static final D2JapiErrorCode OBJECT_IS_READ_ONLY
      • OBJECT_HAS_CHILDREN

        public static final D2JapiErrorCode OBJECT_HAS_CHILDREN
      • SAVE_REFERENCES_ERROR

        public static final D2JapiErrorCode SAVE_REFERENCES_ERROR
      • MANUAL_CTRL_DISABLED

        public static final D2JapiErrorCode MANUAL_CTRL_DISABLED
      • COMMAND_NOT_ACCEPT

        public static final D2JapiErrorCode COMMAND_NOT_ACCEPT
      • PROCES_NOT_RUNNING

        public static final D2JapiErrorCode PROCES_NOT_RUNNING
      • NAME_ALLREADY_EXIST

        public static final D2JapiErrorCode NAME_ALLREADY_EXIST
      • USER_INVALID_ACCESS

        public static final D2JapiErrorCode USER_INVALID_ACCESS
        User account impersonation is not allowed. Should not occur in JAPI.
      • LOGON_WRONG_PASSWORD

        public static final D2JapiErrorCode LOGON_WRONG_PASSWORD
        Logon attempted with wrong password.
      • LOGON_NAME_ERROR

        public static final D2JapiErrorCode LOGON_NAME_ERROR
        Logon attempted with invalid login. There is not user account for such login.
      • PASSWORD_EXPIR_TIME

        public static final D2JapiErrorCode PASSWORD_EXPIR_TIME
        Password has expired. A new password must be set for the user account.
      • USER_IS_DISABLED

        public static final D2JapiErrorCode USER_IS_DISABLED
        User account has been disabled. Either permanently by system configuration or temporarily because of too many invalid logon attempts.
      • USER_EXPIR_TIME

        public static final D2JapiErrorCode USER_EXPIR_TIME
        User account has expired.
      • DATABASE_NOT_VALID

        public static final D2JapiErrorCode DATABASE_NOT_VALID
      • PROCES_RUN_DISABLE

        public static final D2JapiErrorCode PROCES_RUN_DISABLE
      • PROCES_LICENCE_DISABLE

        public static final D2JapiErrorCode PROCES_LICENCE_DISABLE
      • DBM_SEQUENCE_ERROR

        public static final D2JapiErrorCode DBM_SEQUENCE_ERROR
      • DATABASE_OPEN_ERROR

        public static final D2JapiErrorCode DATABASE_OPEN_ERROR
      • CREATE_WRT_FILE_ERROR

        public static final D2JapiErrorCode CREATE_WRT_FILE_ERROR
      • CREATE_STATISTICS_ERROR

        public static final D2JapiErrorCode CREATE_STATISTICS_ERROR
      • DUPLICATE_ADDRESS_ERROR

        public static final D2JapiErrorCode DUPLICATE_ADDRESS_ERROR
      • POINT_NOT_FOUND_ERROR

        public static final D2JapiErrorCode POINT_NOT_FOUND_ERROR
      • LICENCE_LIMIT_OVERRUN

        public static final D2JapiErrorCode LICENCE_LIMIT_OVERRUN
      • INVALID_DB_PASSWORD

        public static final D2JapiErrorCode INVALID_DB_PASSWORD
      • TOO_MANY_ROWS_IN_SELECT

        public static final D2JapiErrorCode TOO_MANY_ROWS_IN_SELECT
      • DBM_CONNECTION_BROKEN_ERROR

        public static final D2JapiErrorCode DBM_CONNECTION_BROKEN_ERROR
      • DBM_MAX_CONNECTIONS

        public static final D2JapiErrorCode DBM_MAX_CONNECTIONS
      • OBJECT_IS_LOCKED_XML

        public static final D2JapiErrorCode OBJECT_IS_LOCKED_XML
      • LOGON_NAME_PASSWORD_ERROR

        public static final D2JapiErrorCode LOGON_NAME_PASSWORD_ERROR
      • LOGON_METHOD_FORBIDDEN

        public static final D2JapiErrorCode LOGON_METHOD_FORBIDDEN
      • LIMITED_ACCESS_RIGHTS

        public static final D2JapiErrorCode LIMITED_ACCESS_RIGHTS
      • LOGON_AUTHSYSTEM_ERROR

        public static final D2JapiErrorCode LOGON_AUTHSYSTEM_ERROR
      • JAPI_CREATE_CONNECTOR_ERROR

        public static final D2JapiErrorCode JAPI_CREATE_CONNECTOR_ERROR
      • JAPI_WRONG_LICENCE

        public static final D2JapiErrorCode JAPI_WRONG_LICENCE
      • JAPI_UNSUPPORTED_LICENCE_MODEL_NAMED_USER

        public static final D2JapiErrorCode JAPI_UNSUPPORTED_LICENCE_MODEL_NAMED_USER
      • JAPI_UNSUPPORTED_LICENCE_MODEL_CONNCURENT_USER

        public static final D2JapiErrorCode JAPI_UNSUPPORTED_LICENCE_MODEL_CONNCURENT_USER
    • Method Detail

      • values

        public static D2JapiErrorCode[] values​()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (D2JapiErrorCode c : D2JapiErrorCode.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static D2JapiErrorCode valueOf​(java.lang.String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        name - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null