Uploaded image for project: 'MyFaces Core'
  1. MyFaces Core
  2. MYFACES-2007

Converters are not created properly when target class is both, an enum and implements an interface

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Closed
    • Major
    • Resolution: Fixed
    • 1.2.4
    • 1.2.7
    • None
    • None

    Description

      This patch fixes the following situation:

      • A converter is bound in faces-config.xml to an interface type (ex. EnumCoded).
      • There is an enum class that implements EnumCoded, like this:

      public enum PickListActionType implements EnumCoded

      { ..... etc... }
      • There is a converter called a GenericEnumTypeConverter, which knows how to deal with these and is declared like this:
        <converter>
        <converter-for-class>EnumCoded</converter-for-class>
        <converter-class>GenericEnumTypeConverter</converter-class>
        </converter>
      • Right now the converter picked by MyFaces is EnumConverter instead of my GenericEnumTypeConverter, b/c the fact that my target class is an enum takes precedence over the fact that it implements EnumCoded interface. This is incorrect.

      This patch fixes the problem.

      Attachments

        1. myfaces-2007.patch
          3 kB
          Val Blant

        Activity

          People

            lu4242 Leonardo Uribe
            vace117 Val Blant
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: