/** * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.apache.openejb.jee.jpa; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.XmlTransient; /** * @Target({METHOD, FIELD}) @Retention(RUNTIME) * public @interface OneToOne { * Class targetEntity() default void.class; * CascadeType[] cascade() default {}; * FetchType fetch() default EAGER; * boolean optional() default true; * String mappedBy() default ""; * boolean orphanRemoval() default false; * } * <p/> * <p/> * <p/> * <p>Java class for one-to-one complex type. * <p/> * <p>The following schema fragment specifies the expected content contained within this class. * <p/> * <pre> * <complexType name="one-to-one"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <choice> * <element name="primary-key-join-column" type="{http://java.sun.com/xml/ns/persistence/orm}primary-key-join-column" maxOccurs="unbounded" minOccurs="0"/> * <element name="join-column" type="{http://java.sun.com/xml/ns/persistence/orm}join-column" maxOccurs="unbounded" minOccurs="0"/> * <element name="join-table" type="{http://java.sun.com/xml/ns/persistence/orm}join-table" minOccurs="0"/> * </choice> * <element name="cascade" type="{http://java.sun.com/xml/ns/persistence/orm}cascade-type" minOccurs="0"/> * </sequence> * <attribute name="fetch" type="{http://java.sun.com/xml/ns/persistence/orm}fetch-type" /> * <attribute name="mapped-by" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="optional" type="{http://www.w3.org/2001/XMLSchema}boolean" /> * <attribute name="target-entity" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="access" type="{http://java.sun.com/xml/ns/persistence/orm}access-type" /> * <attribute name="orphan-removal" type="{http://www.w3.org/2001/XMLSchema}boolean" /> * <attribute name="maps-id" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}boolean" /> * </restriction> * </complexContent> * </complexType> * </pre> */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "one-to-one", propOrder = { "primaryKeyJoinColumn", "joinColumn", "joinTable", "cascade" }) public class OneToOne implements RelationField { @XmlElement(name = "primary-key-join-column") protected List<PrimaryKeyJoinColumn> primaryKeyJoinColumn; @XmlElement(name = "join-column") protected List<JoinColumn> joinColumn; @XmlElement(name = "join-table") protected JoinTable joinTable; protected CascadeType cascade; @XmlAttribute protected FetchType fetch; @XmlAttribute protected AccessType access; @XmlAttribute(name = "mapped-by") protected String mappedBy; @XmlAttribute(name = "orphan-removal") protected Boolean orphanRemoval; @XmlAttribute(name = "maps-id") protected String mapsId; @XmlAttribute protected Boolean id; @XmlAttribute(required = true) protected String name; @XmlAttribute protected Boolean optional; @XmlAttribute(name = "target-entity") protected String targetEntity; @XmlTransient protected RelationField relatedField; @XmlTransient protected boolean syntheticField; /** * Gets the value of the primaryKeyJoinColumn property. * <p/> * <p/> * This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a <CODE>set</CODE> method for the primaryKeyJoinColumn property. * <p/> * <p/> * For example, to add a new item, do as follows: * <pre> * getPrimaryKeyJoinColumn().add(newItem); * </pre> * <p/> * <p/> * <p/> * Objects of the following type(s) are allowed in the list * {@link PrimaryKeyJoinColumn } */ public List<PrimaryKeyJoinColumn> getPrimaryKeyJoinColumn() { if (primaryKeyJoinColumn == null) { primaryKeyJoinColumn = new ArrayList<PrimaryKeyJoinColumn>(); } return this.primaryKeyJoinColumn; } /** * Gets the value of the joinColumn property. * <p/> * <p/> * This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a <CODE>set</CODE> method for the joinColumn property. * <p/> * <p/> * For example, to add a new item, do as follows: * <pre> * getJoinColumn().add(newItem); * </pre> * <p/> * <p/> * <p/> * Objects of the following type(s) are allowed in the list * {@link JoinColumn } */ public List<JoinColumn> getJoinColumn() { if (joinColumn == null) { joinColumn = new ArrayList<JoinColumn>(); } return this.joinColumn; } /** * Gets the value of the joinTable property. * * @return possible object is * {@link JoinTable } */ public JoinTable getJoinTable() { return joinTable; } /** * Sets the value of the joinTable property. * * @param value allowed object is * {@link JoinTable } */ public void setJoinTable(final JoinTable value) { this.joinTable = value; } /** * Gets the value of the cascade property. * * @return possible object is * {@link CascadeType } */ public CascadeType getCascade() { return cascade; } /** * Sets the value of the cascade property. * * @param value allowed object is * {@link CascadeType } */ public void setCascade(final CascadeType value) { this.cascade = value; } /** * Gets the value of the fetch property. * * @return possible object is * {@link FetchType } */ public FetchType getFetch() { return fetch; } /** * Sets the value of the fetch property. * * @param value allowed object is * {@link FetchType } */ public void setFetch(final FetchType value) { this.fetch = value; } /** * Gets the value of the access property. * * @return possible object is * {@link AccessType } */ public AccessType getAccess() { return access; } /** * Sets the value of the access property. * * @param value allowed object is * {@link AccessType } */ public void setAccess(final AccessType value) { this.access = value; } /** * Gets the value of the mappedBy property. * * @return possible object is * {@link String } */ public String getMappedBy() { return mappedBy; } /** * Sets the value of the mappedBy property. * * @param value allowed object is * {@link String } */ public void setMappedBy(final String value) { this.mappedBy = value; } /** * Gets the value of the orphanRemoval property. * * @return possible object is * {@link Boolean } */ public Boolean isOrphanRemoval() { return orphanRemoval; } /** * Sets the value of the orphanRemoval property. * * @param value allowed object is * {@link Boolean } */ public void setOrphanRemoval(final Boolean value) { this.orphanRemoval = value; } /** * Gets the value of the mapsId property. * * @return possible object is * {@link String } */ public String getMapsId() { return mapsId; } /** * Sets the value of the mapsId property. * * @param value allowed object is * {@link String } */ public void setMapsId(final String value) { this.mapsId = value; } /** * Gets the value of the id property. * * @return possible object is * {@link Boolean } */ public Boolean isId() { return id; } /** * Sets the value of the id property. * * @param value allowed object is * {@link Boolean } */ public void setId(final Boolean value) { this.id = value; } /** * Gets the value of the name property. * * @return possible object is * {@link String } */ public String getName() { return name; } /** * Sets the value of the name property. * * @param value allowed object is * {@link String } */ public void setName(final String value) { this.name = value; } /** * Gets the value of the optional property. * * @return possible object is * {@link Boolean } */ public Boolean isOptional() { return optional; } /** * Sets the value of the optional property. * * @param value allowed object is * {@link Boolean } */ public void setOptional(final Boolean value) { this.optional = value; } /** * Gets the value of the targetEntity property. * * @return possible object is * {@link String } */ public String getTargetEntity() { return targetEntity; } /** * Sets the value of the targetEntity property. * * @param value allowed object is * {@link String } */ public void setTargetEntity(final String value) { this.targetEntity = value; } /** * This is only used for xml converters and will normally return null. * Gets the field on the target entity for this relationship. * * @return the field on the target entity for this relationship. */ public RelationField getRelatedField() { return relatedField; } /** * Gets the field on the target entity for this relationship. * * @param value field on the target entity for this relationship. */ public void setRelatedField(final RelationField value) { this.relatedField = value; } public boolean isSyntheticField() { return syntheticField; } public void setSyntheticField(final boolean syntheticField) { this.syntheticField = syntheticField; } public Object getKey() { return name; } }