You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@isis.apache.org by "Dan Haywood (JIRA)" <ji...@apache.org> on 2013/10/25 10:39:36 UTC

[jira] [Closed] (ISIS-482) Allow as "choices" return type any descendant of "Collection"

     [ https://issues.apache.org/jira/browse/ISIS-482?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Dan Haywood closed ISIS-482.
----------------------------


> Allow as "choices" return type any descendant of "Collection"
> -------------------------------------------------------------
>
>                 Key: ISIS-482
>                 URL: https://issues.apache.org/jira/browse/ISIS-482
>             Project: Isis
>          Issue Type: Improvement
>          Components: Core
>    Affects Versions: core-1.2.0
>            Reporter: Oscar Bou
>            Assignee: Dan Haywood
>             Fix For: core-1.3.0
>
>         Attachments: patch.diff
>
>
> 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();
>             }
>          }



--
This message was sent by Atlassian JIRA
(v6.1#6144)