Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "EclipseLink/DesignDocs/317962/Phase1"

m
m
Line 253: Line 253:
 
<source lang="java">
 
<source lang="java">
 
@javax.xml.bind.annotation.XmlElement
 
@javax.xml.bind.annotation.XmlElement
@org.eclipse.persistence.oxm.annotations.XmlNullPolicy(xsi-nil-represents-null="false", empty-node-represents-null="false", null-representation-for-xml="EMPTY_NODE", is-set-performed-for-absent-node="true")
+
@org.eclipse.persistence.oxm.annotations.XmlNullPolicy(xsi-nil-represents-null="false",  
 +
empty-node-represents-null="false", null-representation-for-xml="EMPTY_NODE",  
 +
is-set-performed-for-absent-node="true")
 
public Object something;
 
public Object something;
 
</source>
 
</source>
Line 291: Line 293:
 
<source lang="java">
 
<source lang="java">
 
@javax.xml.bind.annotation.XmlElement
 
@javax.xml.bind.annotation.XmlElement
@org.eclipse.persistence.oxm.annotations.XmlIsSetNullPolicy(xsi-nil-represents-null="true", empty-node-represents-null="false", null-representation-for-xml="XSI_NIL", is-set-method-name="isSetSomething" isSetMethodParameters= {
+
@org.eclipse.persistence.oxm.annotations.XmlIsSetNullPolicy(xsi-nil-represents-null="true",
 +
  empty-node-represents-null="false",  
 +
  null-representation-for-xml="XSI_NIL",  
 +
  is-set-method-name="isSetSomething",
 +
  isSetMethodParameters= {
 
     @org.eclipse.persistence.oxm.annotations.XmlIsSetParameter(value="somevalue", type="java.lang.String")
 
     @org.eclipse.persistence.oxm.annotations.XmlIsSetParameter(value="somevalue", type="java.lang.String")
 
     @org.eclipse.persistence.oxm.annotations.XmlIsSetParameter(value="false", type="java.lang.Boolean")
 
     @org.eclipse.persistence.oxm.annotations.XmlIsSetParameter(value="false", type="java.lang.Boolean")

Revision as of 14:29, 27 July 2010

Phase 1 - Provide MOXy annotation support equivalent to our XML metadata support

This phase of development involves providing MOXy annotation support equivalent to the existing EclipseLink XML metadata support

Annotations

The following annotations will be targeted in this phase:

Annotation XML Metadata Tag Package Type Field Method
XmlReadOnly read-only     X X
XmlWriteOnly write-only     X X
XmlCDATA cdata     X X
XmlAccessMethods xml-access-methods     X X
XmlPaths xml-elements     X X
XmlNullPolicy xml-null-policy     X X
XmlIsSetNullPolicy xml-is-set-null-policy     X X
XmlIsSetParameters n/a     X X
XmlIsSetParameter is-set-parameter     X X

Example: XmlReadOnly annotation

The following example will demonstrate how the XmlReadOnly annotation can be applied:

A property can be configured to be read-only via EclipseLink XML metadata as follows:

<xml-attribute java-attribute="salary" read-only="true" />

The equivalent configured via annotations would look like:

package org.example;
 
public class Employee {
    @javax.xml.bind.annotation.XmlAttribute
    @org.eclipse.persistence.oxm.annotations.XmlReadOnly
    public String salary;
}

Following is the proposed XmlReadOnly annotation:

package org.eclipse.persistence.oxm.annotations;
 
@Target({ElementType.FIELD, ElementType.METHOD})
@Retention(RetentionPolicy.RUNTIME)
public @interface XmlReadOnly {}

Example: XmlWriteOnly annotation

The following example will demonstrate how the XmlWriteOnly annotation can be applied:

A property can be configured to be write-only via EclipseLink XML metadata as follows:

<xml-attribute java-attribute="privateData" write-only="true" />

The equivalent configured via annotations would look like:

package org.example;
 
public class Employee {
    @javax.xml.bind.annotation.XmlAttribute
    @org.eclipse.persistence.oxm.annotations.XmlWriteOnly
    public String privateData;
}

Following is the proposed XmlWriteOnly annotation:

package org.eclipse.persistence.oxm.annotations;
 
@Target({ElementType.FIELD, ElementType.METHOD})
@Retention(RetentionPolicy.RUNTIME)
public @interface XmlWriteOnly {}

Example: XmlCDATA annotation

The following example will demonstrate how the XmlCDATA annotation can be applied:

A property can be configured as CDATA (character data) via EclipseLink XML metadata as follows:

<xml-element java-attribute="characterData" cdata="true" />

The equivalent configured via annotations would look like:

package org.example;
 
public class Employee {
    @javax.xml.bind.annotation.XmlElement
    @org.eclipse.persistence.oxm.annotations.XmlCDATA
    public String characterData;
}

Following is the proposed XmlCDATA annotation:

package org.eclipse.persistence.oxm.annotations;
 
@Target({ElementType.FIELD, ElementType.METHOD})
@Retention(RetentionPolicy.RUNTIME)
public @interface XmlCDATA {}

Example: XmlAccessMethods annotation

The following example will demonstrate how the XmlAccessMethods annotation can be applied:

A property's accessor methods can be configured via EclipseLink XML metadata as follows:

<xml-element java-attribute="firstName">
    <xml-access-methods get-method="getFirstName" set-method="setFirstName" />
</xml-element>

The equivalent configured via annotations would look like:

package org.example;
 
public class Employee {
    @javax.xml.bind.annotation.XmlElement
    @org.eclipse.persistence.oxm.annotations.XmlAccessMethods(getMethodName="getFirstName", setMethodName="setFirstName")
    public String firstName;
}

Following is the proposed XmlAccessMethods annotation:

package org.eclipse.persistence.oxm.annotations;
 
@Target({ElementType.FIELD, ElementType.METHOD})
@Retention(RetentionPolicy.RUNTIME)
public @interface XmlAccessMethods {
    String getMethodName() default "";
    String setMethodName() default "";
}

Example: XmlPaths annotation

The following example will demonstrate how the XmlPaths annotation can be applied:

Path-based mappings on xml-element entries within an xml-elements structure can be configured via EclipseLink XML metadata as follows:

<xml-elements java-attribute="things">
    <xml-access-methods get-method="getThings" set-method="setThings" />
    <xml-element type="java.lang.Integer" xml-path="integers/my-integer/text()" />
    <xml-element type="java.lang.Float" xml-path="floats/my-float/text()" />
</xml-elements>

The equivalent configured via annotations would look like:

@javax.xml.bind.annotation.XmlElements({
    @javax.xml.bind.annotation.XmlElement(type=java.lang.Integer.class),
    @javax.xml.bind.annotation.XmlElement(type=java.lang.Float.class)
})
@org.eclipse.persistence.oxm.annotations.XmlPaths({
    @org.eclipse.persistence.oxm.annotations.XmlPath("integers/my-integer"),
    @org.eclipse.persistence.oxm.annotations.XmlPath("floats/my-float")
})
public List<Object> things;

Following is the proposed XmlPaths annotation:

package org.eclipse.persistence.oxm.annotations;
 
@Target({ElementType.FIELD, ElementType.METHOD})
@Retention(RetentionPolicy.RUNTIME)
public @interface XmlPaths {
    XmlPath[] value();
}

Example: XmlNullPolicy annotation

The following example will demonstrate how the XmlNullPolicy annotation can be applied:

A property's null policy can be configured via EclipseLink XML metadata as follows:

<xml-element java-attribute="something">
    <xml-null-policy xsi-nil-represents-null="false" empty-node-represents-null="false" null-representation-for-xml="EMPTY_NODE" is-set-performed-for-absent-node="true" />
</xml-element>

The equivalent configured via annotations would look like:

@javax.xml.bind.annotation.XmlElement
@org.eclipse.persistence.oxm.annotations.XmlNullPolicy(xsi-nil-represents-null="false", 
empty-node-represents-null="false", null-representation-for-xml="EMPTY_NODE", 
is-set-performed-for-absent-node="true")
public Object something;

Following is the proposed XmlNullPolicy annotation:

package org.eclipse.persistence.oxm.annotations;
 
@Target({ElementType.FIELD, ElementType.METHOD})
@Retention(RetentionPolicy.RUNTIME)
public @interface XmlNullPolicy {
 
    boolean xsiNilRepresentsNull() default false;
 
    boolean emptyNodeRepresentsNull() default false;
 
    boolean isSetPerformedForAbsentNode() default true;
 
    XmlMarshalNullRepresentation nullRepresentationForXml();
}

Example: XmlIsSetNullPolicy annotation

The following example will demonstrate how the XmlIsSetNullPolicy annotation can be applied:

A property's is set null policy can be configured via EclipseLink XML metadata as follows:

<xml-element java-attribute="some-element" name="some-string">
    <xml-is-set-null-policy xsi-nil-represents-null="true" empty-node-represents-null="false" null-representation-for-xml="XSI_NIL" is-set-method-name="isSetSomeString">
        <is-set-parameter value="false" type="java.lang.Boolean" />
    </xml-is-set-null-policy>
</xml-element>

The equivalent configured via annotations would look like:

@javax.xml.bind.annotation.XmlElement
@org.eclipse.persistence.oxm.annotations.XmlIsSetNullPolicy(xsi-nil-represents-null="true",
  empty-node-represents-null="false", 
  null-representation-for-xml="XSI_NIL", 
  is-set-method-name="isSetSomething",
  isSetMethodParameters= {
    @org.eclipse.persistence.oxm.annotations.XmlIsSetParameter(value="somevalue", type="java.lang.String")
    @org.eclipse.persistence.oxm.annotations.XmlIsSetParameter(value="false", type="java.lang.Boolean")
})
public Object something;

Following is the proposed XmlIsSetNullPolicy annotation:

package org.eclipse.persistence.oxm.annotations;
 
@Target({ElementType.FIELD, ElementType.METHOD})
@Retention(RetentionPolicy.RUNTIME)
public @interface XmlIsSetNullPolicy {
    boolean xsiNilRepresentsNull() default false;
 
    boolean emptyNodeRepresentsNull() default false;
 
    XmlMarshalNullRepresentation nullRepresentationForXml();
 
    String isSetMethodName();
 
    XmlParameter[] isSetMethodParameters() default {};
}

Following is the proposed XmlIsSetParameters annotation:

package org.eclipse.persistence.oxm.annotations;
 
@Target({ElementType.FIELD, ElementType.METHOD})
@Retention(RetentionPolicy.RUNTIME)
public @interface XmlIsSetParameters {
    // TODO: finish this
}

Following is the proposed XmlIsSetParameter annotation:

package org.eclipse.persistence.oxm.annotations;
 
@Target({ElementType.FIELD, ElementType.METHOD})
@Retention(RetentionPolicy.RUNTIME)
public @interface XmlIsSetParameter {
    // TODO: finish this
}

Back to the top