Class: com.sybase.djc.ant.CopyValuesProperty (Copy Values Property) EAServer 6.3 Help
Description Configures a component with a remote interface to use by-copy parameter passing semantics, in accordance with the requirements of the RMI-IIOP specification.
Configuration Example:
<setProperties component="ejb.components.example.MyCompRemote">
  <copyValues enable="true"/>
  ...
</setProperties>
Nested Properties enable

Property: enable (Enable)
Description Enables by-copy parameter passing semantics. The alternative (if enable is "false") it to use by-reference parameter passing semantics, which is generally much more efficient but can result in problems if a component modifies, or retains references to, any of its parameters. By-reference parameter passing semantics are equivalent to what is used with EJB local interfaces.

Portability Note: using by-reference semantics (enable = "false") is non-standard for use with EJB remote interfaces, although it is supported by most EJB implementations.

Default Value true
Legal Values false, true