Enum RejectAttributeValueChecker

    • Nested Class Summary

      • Nested classes/interfaces inherited from interface org.jboss.as.controller.transform.description.RejectAttributeChecker

        org.jboss.as.controller.transform.description.RejectAttributeChecker.DefaultRejectAttributeChecker, org.jboss.as.controller.transform.description.RejectAttributeChecker.ListRejectAttributeChecker, org.jboss.as.controller.transform.description.RejectAttributeChecker.ObjectFieldsRejectAttributeChecker, org.jboss.as.controller.transform.description.RejectAttributeChecker.SimpleAcceptAttributeChecker, org.jboss.as.controller.transform.description.RejectAttributeChecker.SimpleRejectAttributeChecker
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      NEGATIVE  
      ZERO  
    • Field Summary

      • Fields inherited from interface org.jboss.as.controller.transform.description.RejectAttributeChecker

        ALL, DEFINED, SIMPLE_EXPRESSIONS, UNDEFINED
    • Method Detail

      • values

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

        public static RejectAttributeValueChecker 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
      • rejectOperationParameter

        public boolean rejectOperationParameter​(org.jboss.as.controller.PathAddress address,
                                                String attributeName,
                                                org.jboss.dmr.ModelNode attributeValue,
                                                org.jboss.dmr.ModelNode operation,
                                                org.jboss.as.controller.transform.TransformationContext context)
        Specified by:
        rejectOperationParameter in interface org.jboss.as.controller.transform.description.RejectAttributeChecker
      • rejectResourceAttribute

        public boolean rejectResourceAttribute​(org.jboss.as.controller.PathAddress address,
                                               String attributeName,
                                               org.jboss.dmr.ModelNode attributeValue,
                                               org.jboss.as.controller.transform.TransformationContext context)
        Specified by:
        rejectResourceAttribute in interface org.jboss.as.controller.transform.description.RejectAttributeChecker
      • getRejectionLogMessageId

        public String getRejectionLogMessageId()
        Specified by:
        getRejectionLogMessageId in interface org.jboss.as.controller.transform.description.RejectAttributeChecker