[jboss-jira] [JBoss JIRA] Created: (JBMAN-46) Further MetaValue usage cleanup

Scott M Stark (JIRA) jira-events at lists.jboss.org
Mon Nov 24 12:57:36 EST 2008


Further MetaValue usage cleanup
-------------------------------

                 Key: JBMAN-46
                 URL: https://jira.jboss.org/jira/browse/JBMAN-46
             Project: JBoss Managed
          Issue Type: Task
    Affects Versions: JBossMan.2.0.0.CR5
            Reporter: Scott M Stark
            Assignee: Scott M Stark
             Fix For: JBossMan.2.0.0.GA


Another place where MetaValues are not being used in the api is in the ManagedProperty min/max and valid value checks:
   Comparable<?> getMinimumValue();
   Comparable<?> getMaximumValue();
   String checkValidValue(Serializable value);

These should be:
   Comparable<? extends MetaValue> getMinimumValue();
   Comparable<? extends MetaValue> getMaximumValue();
   String checkValidValue(MetaValue value);


-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        



More information about the jboss-jira mailing list