EclipseLink 1.0_1.0 M9 - 20080618 API Reference - Incubation

org.eclipse.persistence.annotations
Annotation Type CopyPolicy


@Target(value=TYPE)
@Retention(value=RUNTIME)
public @interface CopyPolicy

A CopyPolicy is used to set an org.eclipse.persistence.descriptors.copying.CopyPolicy on an Entity. It is required that a class that implements org.eclipse.persistence.descriptors.copying.CopyPolicy be specified as the argument. A CopyPolicy should be specified on an Entity or MappedSuperclass. For instance:

See Also:
CopyPolicy, CloneCopyPolicy, InstantiationCopyPolicy
Author:
tware

Required Element Summary
 java.lang.Class value
          (Required) This defines the class of the copy policy.
 

Element Detail

value

public abstract java.lang.Class value
(Required) This defines the class of the copy policy. It must specify a class that implements org.eclipse.persistence.descriptors.copying.CopyPolicy


EclipseLink 1.0_1.0 M9 - 20080618 API Reference - Incubation