org.hibernate.jpamodelgen.xml.jaxb.IdClass Maven / Gradle / Ivy
package org.hibernate.jpamodelgen.xml.jaxb;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlType;
/**
*
*
* @Target({TYPE}) @Retention(RUNTIME)
* public @interface IdClass {
* Class value();
* }
*
*
*
* Java class for id-class complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
{@code
*
*
*
*
*
*
*
* }
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "id-class", namespace = "https://jakarta.ee/xml/ns/persistence/orm")
public class IdClass {
@XmlAttribute(name = "class", required = true)
protected String clazz;
/**
* Gets the value of the clazz property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getClazz() {
return clazz;
}
/**
* Sets the value of the clazz property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setClazz(String value) {
this.clazz = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy