Enum TechnicalErrorCode

    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      T00000
      Generic technical error
      T00001
      Generic technical error displayed at GUI layer
      T00007
      No ES node is available
      T00008
      * Transaction cannot be authorized
      T00012
      Object cannot be marshaled into String through JAXB
      T00013
      String cannot be unmarshaled into Object through JAXB
      T00101
      Components cannot be stored
      T00102
      Components cannot be updated
      T00103
      Components cannot be fetched
      T00104
      Components cannot be found
      T00105
      Components cannot be deleted
      T00106
      Components search exceed count limit
      T00107
      Version conflict during update
      T00108
      Components already exist with same ids
      T00201
      Component classes cannot be stored
      T00202
      Component classes cannot be updated
      T00203
      Component classes cannot be got
      T00205
      Component classes cannot be removed
      T00206
      Component classes cannot be found
      T00301
      Workflows cannot be stored
      T00302
      Workflows cannot be got
      T00303
      All workflows cannot be got
      T00304
      Workflows cannot be updated
      T00305
      The workflows cannot be deleted
      T00501
      Baskets cannot be added
      T00503
      All baskets cannot be got
      T00602
      Scope cannot be got
      T00604
      Scope cannot be updated
      T00605
      Scope cannot be deleted
      T00701
      File cannot be stored
      T00702
      Document files cannot be fetched
      T00703
      Document files cannot be deleted
      T00704
      InputStream cannot be extracted from DocumentFile
      T00705
      No temporary file can be stored for uploaded children file
      T00707
      Temporary file does not exist
      T00708
      File integrity violation
      T00709
      File cannot be indexed
      T00801
      Tag classes cannot be stored
      T00803
      Tag classes cannot be got
      T00804
      All tag classes cannot be got
      T00805
      Tag classes cannot be updated
      T00806
      Tag classes cannot be deleted
      T00851
      Tag categories cannot be stored
      T00853
      Tag categories cannot be got
      T00854
      All tag categories cannot be got
      T00855
      Tag categories cannot be updated
      T00856
      Tag categories cannot be deleted
      T01001
      ACL cannot be stored
      T01002
      ACL cannot be got
      T01003
      ACL cannot be updated
      T01005
      ACL cannot be removed
      T01006
      All ACLs cannot be got
      T01007
      User could not be got
      T01008
      User could not be created
      T01009
      User could not be modified
      T01010
      Could not found users
      T01012
      Could not found user DN
      T01013
      Identity attribute could not be mapped
      T01014
      Token cannot be parsed due to invalid key
      T01015
      Token is expired
      T01016
      Password does not match LDAP domain password strategy
      T01017
      LDAP action could not be performed within non-secure connection
      T01018
      The user already exists
      T01019
      The group already exists
      T01020
      Group could not be got
      T01021
      Group could not be created
      T01022
      Group could not be modified
      T01023
      Could not found users
      T01024
      Could not delete user
      T01025
      Could not delete group
      T01101
      Non parsable date
      T01102
      Unaffected
      T01103
      Failed to download result search
      T01301
      Delegation cannot be stored
      T01302
      Delegation cannot be updated
      T01303
      Delegation cannot be got
      T01304
      Delegation cannot be removed
      T01401
      Labels from internal cannot be fetched
      T01501
      Content cannot be fetched for a search : id
      T01502
      Content cannot be fetched for category with id
      T01503
      Folder does not exist or is empty, its content cannot be exported
      T01504
      Could not convert file of document as PDF
      T01601
      Job identifier is invalid
      T01602
      Result of job cannot be get
      T01603
      No job can be found for jobId
      T01789
      Deprecated.
      T01801
      Could not index document content for file of document
      T01802
      Could not de-index document content for file of document
      T01803
      Could not get document content for file of document
      T01901
      Could not extract document content for file of document.
      T01902
      Could not extract document content for file of document.
      T01903
      Could not extract document content for file of document
      T02001
      Could not create data masking for document
      T02002
      Annotation document id= have no content
      T02003
      Could not convert document content as annotation for document
      T02004
      Could not transform annotation for document=, annotation=
      T02005
      Could not serialize XFDF for annotation=
      T10102
      Part of components cannot be updated
    • Method Summary

      All Methods Static Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      static java.lang.Integer getHttpErrorCode​(java.lang.String code)  
      int httpCode()  
      static TechnicalErrorCode valueOf​(java.lang.String name)
      Returns the enum constant of this type with the specified name.
      static TechnicalErrorCode[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      • Methods inherited from class java.lang.Enum

        clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
      • Methods inherited from class java.lang.Object

        getClass, notify, notifyAll, wait, wait, wait
    • Method Detail

      • values

        public static TechnicalErrorCode[] 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 (TechnicalErrorCode c : TechnicalErrorCode.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static TechnicalErrorCode 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
      • httpCode

        public int httpCode()
      • getHttpErrorCode

        public static java.lang.Integer getHttpErrorCode​(java.lang.String code)