Uploaded image for project: 'Causeway'
  1. Causeway
  2. CAUSEWAY-482

Allow as "choices" return type any descendant of "Collection"

    XMLWordPrintableJSON

Details

    • Improvement
    • Status: Closed
    • Major
    • Resolution: Fixed
    • core-1.2.0
    • core-1.3.0
    • Core
    • None

    Description

      Current implementation only allows to return a List with the choices for a given property, action or action parameter.

      It should be improved to allow to return any descendant of java.util.Collection.

      All these cases should be valid:

      class Customer {
      @SuppressWarnings("unused")
      public void someAction(final int x, final long y, final long z) {
      }

      @SuppressWarnings("unused")
      public Collection<Integer> choices0SomeAction()

      { return Collections.emptyList(); }

      @SuppressWarnings("unused")
      public List<Long> choices1SomeAction() { return Collections.emptyList(); }

      @SuppressWarnings("unused")
      public Set<Long> choices2SomeAction()

      { return Collections.emptySet(); }

      }

      Attachments

        1. patch.diff
          8 kB
          Oscar Bou

        Activity

          People

            danhaywood Daniel Keir Haywood
            obou Oscar Bou
            Votes:
            0 Vote for this issue
            Watchers:
            3 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: