I'm not seeing an element get populated with a default value if the property has this
specified, for example:
|
@XmlElement(defaultValue="org.jboss.ejb.plugins.lock.QueuedPessimisticEJBLock")
| public void setLockingPolicy(String lockingPolicy)
| {
| if (lockingPolicy == null)
| throw new IllegalArgumentException("Null lockingPolicy");
| this.lockingPolicy = lockingPolicy;
| }
|
Accessing the lockPolicy value after parsing a document without a locking-policy element
does not produce the indicated default value. Shouldn't this?
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4095502#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...