BuilderFactory support for typed configurations instead of lists
----------------------------------------------------------------

         Key: HIVEMIND-84
         URL: http://issues.apache.org/jira/browse/HIVEMIND-84
     Project: HiveMind
        Type: Improvement
  Components: framework  
    Versions: 1.1    
    Reporter: Achim H�gen
    Priority: Minor
 Attachments: typed-configuration-patch.zip

What always bothered me is the need to define configuration properties or 
parameters as java.util.List
even if the configuration has a single contribution only (defined with 
occurs="1" or occurs="0..1")
I rather often use such configurations because it's an comfortable way to 
separate the service construction (via builder factory) from the service 
configuration (which is done at deployment time).

So I improved builder factory. Now you can define  configuration properties and 
parameters as typed configurations:

For example, use:

public void setConfiguration(Datum datum)
{
    _datum = datum;
}

instead of:

public void setConfiguration(List configuration)
{
    _datum = (Datum) configuration.get(0);
}
 

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to