Enum EDE4AErrorCode

    • Enum Constant Detail

      • IF_001

        public static final EDE4AErrorCode IF_001
        The payload provided from DC/DP to the DE4A Connector is not valid
      • IF_002

        public static final EDE4AErrorCode IF_002
        Message Validation Failed
      • DD_001

        public static final EDE4AErrorCode DD_001
        The DE4A Directory is not reachable
      • DD_002

        public static final EDE4AErrorCode DD_002
        An SMP could not be queried
      • DD_003

        public static final EDE4AErrorCode DD_003
        Error validating a signature from SMP
      • DD_004

        public static final EDE4AErrorCode DD_004
        The Dynamic Discovery Service was not able to find any Participant Identifiers
      • ME_001

        public static final EDE4AErrorCode ME_001
        The DE4A Connector was not able to communicate with the Local AS4 gateway
      • ME_002

        public static final EDE4AErrorCode ME_002
        The AS4 Gateway was not able to send the message
      • ME_003

        public static final EDE4AErrorCode ME_003
        The AS4 gateway could not deliver the message to the addressed gateway
      • ME_004

        public static final EDE4AErrorCode ME_004
        The AS4 gateway has not received a receipt
    • Method Detail

      • values

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

        public static EDE4AErrorCode valueOf​(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:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null
      • getID

        @Nonnull
        @Nonempty
        public String getID()
        Specified by:
        getID in interface com.helger.commons.id.IHasID<String>
      • getFromIDOrNull

        @Nullable
        public static EDE4AErrorCode getFromIDOrNull​(@Nullable
                                                     String sID)