All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.hibernate.jpamodelgen.xml.jaxb.UniqueConstraint Maven / Gradle / Ivy

There is a newer version: 7.0.0.Beta3
Show newest version

package org.hibernate.jpamodelgen.xml.jaxb;

import java.util.ArrayList;
import java.util.List;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlType;


/**
 * 
 * 
 *         @Target({}) @Retention(RUNTIME)
 *         public @interface UniqueConstraint {
 *           String name() default "";
 *           String[] columnNames();
 *         }
 * 
 *       
 * 
 * 

Java class for unique-constraint complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

{@code
 * 
 *   
 *     
 *       
 *         
 *       
 *       
 *     
 *   
 * 
 * }
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "unique-constraint", namespace = "https://jakarta.ee/xml/ns/persistence/orm", propOrder = { "columnName" }) public class UniqueConstraint { @XmlElement(name = "column-name", namespace = "https://jakarta.ee/xml/ns/persistence/orm", required = true) protected List columnName; @XmlAttribute(name = "name") protected String name; /** * Gets the value of the columnName property. * *

* 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 Jakarta XML Binding object. * This is why there is not a {@code set} method for the columnName property. * *

* For example, to add a new item, do as follows: *

     *    getColumnName().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link String } * * * @return * The value of the columnName property. */ public List getColumnName() { if (columnName == null) { columnName = new ArrayList<>(); } return this.columnName; } /** * 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(String value) { this.name = value; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy