blob: 7024746a0f0f80a0a15a6591c0e93b2934368817 [file] [log] [blame]
/*
* Copyright (c) 1998, 2020 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0,
* or the Eclipse Distribution License v. 1.0 which is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause
*/
// Contributors:
// rbarkhouse - 2009-11-25 14:23:25 - v2.0 - initial implementation
package org.eclipse.persistence.oxm.annotations;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* This annotation is used to map a back-pointer during the unmarshal operation.
* When configuring an @XmlInverseReference, the "mappedBy" attribute must
* be set to the field on the reference class that maps to this field. For
* example:<br><br>
*
* <code>
* &nbsp;@XmlRootElement<br>
* &nbsp;public class Employee {<br>
* &nbsp;&nbsp;&nbsp;&nbsp;...<br>
* &nbsp;&nbsp;&nbsp;&nbsp;@XmlElementWrapper(name="phone-numbers")<br>
* &nbsp;&nbsp;&nbsp;&nbsp;@XmlElement(name="number")<br>
* &nbsp;&nbsp;&nbsp;&nbsp;public List&lt;PhoneNumber&gt; phoneNumbers;<br>
* &nbsp;&nbsp;&nbsp;&nbsp;...<br>
* &nbsp;}<br><br>
*
* &nbsp;public class PhoneNumber {<br>
* &nbsp;&nbsp;&nbsp;&nbsp;...<br>
* &nbsp;&nbsp;&nbsp;&nbsp;@XmlInverseReference(mappedBy="phoneNumbers")<br>
* &nbsp;&nbsp;&nbsp;&nbsp;public Employee owningEmployee;<br>
* &nbsp;&nbsp;&nbsp;&nbsp;...<br>
* &nbsp;}<br>
* </code>
*
* <p>By default using &#64;XmlInverseReference will make the property act the
* same as &#64;XmlTransient for the marshal operation. You can make the
* property writeable by combining it will &#64;XmlElement.</p>
* <code>
* &nbsp;public class PhoneNumber {<br>
* &nbsp;&nbsp;&nbsp;&nbsp;...<br>
* &nbsp;&nbsp;&nbsp;&nbsp;@XmlInverseReference(mappedBy="phoneNumbers")<br>
* &nbsp;&nbsp;&nbsp;&nbsp;@XmlElement<br>
* &nbsp;&nbsp;&nbsp;&nbsp;public Employee owningEmployee;<br>
* &nbsp;&nbsp;&nbsp;&nbsp;...<br>
* &nbsp;}<br>
* </code>
*/
@Target({ElementType.FIELD, ElementType.METHOD})
@Retention(RetentionPolicy.RUNTIME)
public @interface XmlInverseReference {
String mappedBy();
}