[jboss-dev-forums] [Design the new POJO MicroContainer] - Re: AbstractCollectionMetaData fails with optional add() ope

adrian@jboss.org do-not-reply at jboss.com
Wed Jul 4 08:15:03 EDT 2007


There's no way to check whether a collections is modifiable or otherwise.

But it should certainly be possible to turn this feature off,
with something like the requiresNew attribute on the collection below.

i.e. don't use the getter as the source of the collection to modify


  | <?xml version="1.0" encoding="UTF-8"?>
  | 
  | <deployment xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  |             xsi:schemaLocation="urn:jboss:bean-deployer bean-deployer_2_0.xsd"
  |             xmlns="urn:jboss:bean-deployer:2.0">
  | 
  | 
  |   <bean name = "Manager" class = "PluginManager">
  |     <property name = "bootstrapPlugins">
  |       <list elementClass = "java.lang.String" requiresNew="true">
  |         <value>Test</value>
  |       </list>
  |     </property>
  |   </bean>
  | 
  | </deployment>
  | 

View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4060405#4060405

Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4060405



More information about the jboss-dev-forums mailing list