aboutsummaryrefslogtreecommitdiff
path: root/id/server/moa-id-commons/src/main/java/at/gv/egovernment/moa/id/commons/db/dao/config/OASAML1.java
diff options
context:
space:
mode:
Diffstat (limited to 'id/server/moa-id-commons/src/main/java/at/gv/egovernment/moa/id/commons/db/dao/config/OASAML1.java')
-rw-r--r--id/server/moa-id-commons/src/main/java/at/gv/egovernment/moa/id/commons/db/dao/config/OASAML1.java580
1 files changed, 580 insertions, 0 deletions
diff --git a/id/server/moa-id-commons/src/main/java/at/gv/egovernment/moa/id/commons/db/dao/config/OASAML1.java b/id/server/moa-id-commons/src/main/java/at/gv/egovernment/moa/id/commons/db/dao/config/OASAML1.java
new file mode 100644
index 000000000..b6fcbecbe
--- /dev/null
+++ b/id/server/moa-id-commons/src/main/java/at/gv/egovernment/moa/id/commons/db/dao/config/OASAML1.java
@@ -0,0 +1,580 @@
+//
+// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4
+// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
+// Any modifications to this file will be lost upon recompilation of the source schema.
+// Generated on: 2015.01.09 at 09:01:43 AM CET
+//
+
+
+package at.gv.egovernment.moa.id.commons.db.dao.config;
+
+import java.io.Serializable;
+import java.math.BigInteger;
+import javax.persistence.Basic;
+import javax.persistence.Column;
+import javax.persistence.Entity;
+import javax.persistence.GeneratedValue;
+import javax.persistence.GenerationType;
+import javax.persistence.Id;
+import javax.persistence.Inheritance;
+import javax.persistence.InheritanceType;
+import javax.persistence.Table;
+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.XmlRootElement;
+import javax.xml.bind.annotation.XmlSchemaType;
+import javax.xml.bind.annotation.XmlType;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
+import com.sun.tools.xjc.runtime.ZeroOneBooleanAdapter;
+import org.jvnet.jaxb2_commons.lang.Equals;
+import org.jvnet.jaxb2_commons.lang.EqualsStrategy;
+import org.jvnet.jaxb2_commons.lang.HashCode;
+import org.jvnet.jaxb2_commons.lang.HashCodeStrategy;
+import org.jvnet.jaxb2_commons.lang.JAXBEqualsStrategy;
+import org.jvnet.jaxb2_commons.lang.JAXBHashCodeStrategy;
+import org.jvnet.jaxb2_commons.locator.ObjectLocator;
+import org.jvnet.jaxb2_commons.locator.util.LocatorUtils;
+
+
+/**
+ * <p>Java class for anonymous complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ *
+ * <pre>
+ * &lt;complexType>
+ * &lt;complexContent>
+ * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * &lt;sequence>
+ * &lt;element name="isActive" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ * &lt;element name="provideStammzahl" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ * &lt;element name="provideAUTHBlock" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ * &lt;element name="provideIdentityLink" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ * &lt;element name="provideCertificate" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ * &lt;element name="provideFullMandatorData" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ * &lt;element name="useCondition" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ * &lt;element name="conditionLength" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
+ * &lt;element name="sourceID" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * &lt;element name="provideAllErrors" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
+ * &lt;/sequence>
+ * &lt;/restriction>
+ * &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "", propOrder = {
+ "isActive",
+ "provideStammzahl",
+ "provideAUTHBlock",
+ "provideIdentityLink",
+ "provideCertificate",
+ "provideFullMandatorData",
+ "useCondition",
+ "conditionLength",
+ "sourceID",
+ "provideAllErrors"
+})
+@XmlRootElement(name = "OA_SAML1")
+@Entity(name = "OASAML1")
+@Table(name = "OASAML1")
+@Inheritance(strategy = InheritanceType.JOINED)
+public class OASAML1
+ implements Serializable, Equals, HashCode
+{
+
+ @XmlElement(type = String.class, defaultValue = "false")
+ @XmlJavaTypeAdapter(ZeroOneBooleanAdapter.class)
+ @XmlSchemaType(name = "boolean")
+ protected Boolean isActive;
+ @XmlElement(required = true, type = String.class, defaultValue = "false")
+ @XmlJavaTypeAdapter(ZeroOneBooleanAdapter.class)
+ @XmlSchemaType(name = "boolean")
+ protected Boolean provideStammzahl;
+ @XmlElement(required = true, type = String.class, defaultValue = "false")
+ @XmlJavaTypeAdapter(ZeroOneBooleanAdapter.class)
+ @XmlSchemaType(name = "boolean")
+ protected Boolean provideAUTHBlock;
+ @XmlElement(required = true, type = String.class, defaultValue = "false")
+ @XmlJavaTypeAdapter(ZeroOneBooleanAdapter.class)
+ @XmlSchemaType(name = "boolean")
+ protected Boolean provideIdentityLink;
+ @XmlElement(required = true, type = String.class, defaultValue = "false")
+ @XmlJavaTypeAdapter(ZeroOneBooleanAdapter.class)
+ @XmlSchemaType(name = "boolean")
+ protected Boolean provideCertificate;
+ @XmlElement(required = true, type = String.class, defaultValue = "false")
+ @XmlJavaTypeAdapter(ZeroOneBooleanAdapter.class)
+ @XmlSchemaType(name = "boolean")
+ protected Boolean provideFullMandatorData;
+ @XmlElement(type = String.class)
+ @XmlJavaTypeAdapter(ZeroOneBooleanAdapter.class)
+ @XmlSchemaType(name = "boolean")
+ protected Boolean useCondition;
+ protected BigInteger conditionLength;
+ protected String sourceID;
+ @XmlElement(type = String.class, defaultValue = "true")
+ @XmlJavaTypeAdapter(ZeroOneBooleanAdapter.class)
+ @XmlSchemaType(name = "boolean")
+ protected Boolean provideAllErrors;
+ @XmlAttribute(name = "Hjid")
+ protected Long hjid;
+
+ /**
+ * Gets the value of the isActive property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ @Basic
+ @Column(name = "ISACTIVE")
+ public Boolean isIsActive() {
+ return isActive;
+ }
+
+ /**
+ * Sets the value of the isActive property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setIsActive(Boolean value) {
+ this.isActive = value;
+ }
+
+ /**
+ * Gets the value of the provideStammzahl property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ @Basic
+ @Column(name = "PROVIDESTAMMZAHL")
+ public Boolean isProvideStammzahl() {
+ return provideStammzahl;
+ }
+
+ /**
+ * Sets the value of the provideStammzahl property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setProvideStammzahl(Boolean value) {
+ this.provideStammzahl = value;
+ }
+
+ /**
+ * Gets the value of the provideAUTHBlock property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ @Basic
+ @Column(name = "PROVIDEAUTHBLOCK")
+ public Boolean isProvideAUTHBlock() {
+ return provideAUTHBlock;
+ }
+
+ /**
+ * Sets the value of the provideAUTHBlock property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setProvideAUTHBlock(Boolean value) {
+ this.provideAUTHBlock = value;
+ }
+
+ /**
+ * Gets the value of the provideIdentityLink property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ @Basic
+ @Column(name = "PROVIDEIDENTITYLINK")
+ public Boolean isProvideIdentityLink() {
+ return provideIdentityLink;
+ }
+
+ /**
+ * Sets the value of the provideIdentityLink property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setProvideIdentityLink(Boolean value) {
+ this.provideIdentityLink = value;
+ }
+
+ /**
+ * Gets the value of the provideCertificate property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ @Basic
+ @Column(name = "PROVIDECERTIFICATE")
+ public Boolean isProvideCertificate() {
+ return provideCertificate;
+ }
+
+ /**
+ * Sets the value of the provideCertificate property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setProvideCertificate(Boolean value) {
+ this.provideCertificate = value;
+ }
+
+ /**
+ * Gets the value of the provideFullMandatorData property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ @Basic
+ @Column(name = "PROVIDEFULLMANDATORDATA")
+ public Boolean isProvideFullMandatorData() {
+ return provideFullMandatorData;
+ }
+
+ /**
+ * Sets the value of the provideFullMandatorData property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setProvideFullMandatorData(Boolean value) {
+ this.provideFullMandatorData = value;
+ }
+
+ /**
+ * Gets the value of the useCondition property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ @Basic
+ @Column(name = "USECONDITION")
+ public Boolean isUseCondition() {
+ return useCondition;
+ }
+
+ /**
+ * Sets the value of the useCondition property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setUseCondition(Boolean value) {
+ this.useCondition = value;
+ }
+
+ /**
+ * Gets the value of the conditionLength property.
+ *
+ * @return
+ * possible object is
+ * {@link BigInteger }
+ *
+ */
+ @Basic
+ @Column(name = "CONDITIONLENGTH", precision = 20, scale = 0)
+ public BigInteger getConditionLength() {
+ return conditionLength;
+ }
+
+ /**
+ * Sets the value of the conditionLength property.
+ *
+ * @param value
+ * allowed object is
+ * {@link BigInteger }
+ *
+ */
+ public void setConditionLength(BigInteger value) {
+ this.conditionLength = value;
+ }
+
+ /**
+ * Gets the value of the sourceID property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ @Basic
+ @Column(name = "SOURCEID", length = 255)
+ public String getSourceID() {
+ return sourceID;
+ }
+
+ /**
+ * Sets the value of the sourceID property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setSourceID(String value) {
+ this.sourceID = value;
+ }
+
+ /**
+ * Gets the value of the provideAllErrors property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ @Basic
+ @Column(name = "PROVIDEALLERRORS")
+ public Boolean isProvideAllErrors() {
+ return provideAllErrors;
+ }
+
+ /**
+ * Sets the value of the provideAllErrors property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setProvideAllErrors(Boolean value) {
+ this.provideAllErrors = value;
+ }
+
+ /**
+ * Gets the value of the hjid property.
+ *
+ * @return
+ * possible object is
+ * {@link Long }
+ *
+ */
+ @Id
+ @Column(name = "HJID")
+ @GeneratedValue(strategy = GenerationType.AUTO)
+ public Long getHjid() {
+ return hjid;
+ }
+
+ /**
+ * Sets the value of the hjid property.
+ *
+ * @param value
+ * allowed object is
+ * {@link Long }
+ *
+ */
+ public void setHjid(Long value) {
+ this.hjid = value;
+ }
+
+ public boolean equals(ObjectLocator thisLocator, ObjectLocator thatLocator, Object object, EqualsStrategy strategy) {
+ if (!(object instanceof OASAML1)) {
+ return false;
+ }
+ if (this == object) {
+ return true;
+ }
+ final OASAML1 that = ((OASAML1) object);
+ {
+ Boolean lhsIsActive;
+ lhsIsActive = this.isIsActive();
+ Boolean rhsIsActive;
+ rhsIsActive = that.isIsActive();
+ if (!strategy.equals(LocatorUtils.property(thisLocator, "isActive", lhsIsActive), LocatorUtils.property(thatLocator, "isActive", rhsIsActive), lhsIsActive, rhsIsActive)) {
+ return false;
+ }
+ }
+ {
+ Boolean lhsProvideStammzahl;
+ lhsProvideStammzahl = this.isProvideStammzahl();
+ Boolean rhsProvideStammzahl;
+ rhsProvideStammzahl = that.isProvideStammzahl();
+ if (!strategy.equals(LocatorUtils.property(thisLocator, "provideStammzahl", lhsProvideStammzahl), LocatorUtils.property(thatLocator, "provideStammzahl", rhsProvideStammzahl), lhsProvideStammzahl, rhsProvideStammzahl)) {
+ return false;
+ }
+ }
+ {
+ Boolean lhsProvideAUTHBlock;
+ lhsProvideAUTHBlock = this.isProvideAUTHBlock();
+ Boolean rhsProvideAUTHBlock;
+ rhsProvideAUTHBlock = that.isProvideAUTHBlock();
+ if (!strategy.equals(LocatorUtils.property(thisLocator, "provideAUTHBlock", lhsProvideAUTHBlock), LocatorUtils.property(thatLocator, "provideAUTHBlock", rhsProvideAUTHBlock), lhsProvideAUTHBlock, rhsProvideAUTHBlock)) {
+ return false;
+ }
+ }
+ {
+ Boolean lhsProvideIdentityLink;
+ lhsProvideIdentityLink = this.isProvideIdentityLink();
+ Boolean rhsProvideIdentityLink;
+ rhsProvideIdentityLink = that.isProvideIdentityLink();
+ if (!strategy.equals(LocatorUtils.property(thisLocator, "provideIdentityLink", lhsProvideIdentityLink), LocatorUtils.property(thatLocator, "provideIdentityLink", rhsProvideIdentityLink), lhsProvideIdentityLink, rhsProvideIdentityLink)) {
+ return false;
+ }
+ }
+ {
+ Boolean lhsProvideCertificate;
+ lhsProvideCertificate = this.isProvideCertificate();
+ Boolean rhsProvideCertificate;
+ rhsProvideCertificate = that.isProvideCertificate();
+ if (!strategy.equals(LocatorUtils.property(thisLocator, "provideCertificate", lhsProvideCertificate), LocatorUtils.property(thatLocator, "provideCertificate", rhsProvideCertificate), lhsProvideCertificate, rhsProvideCertificate)) {
+ return false;
+ }
+ }
+ {
+ Boolean lhsProvideFullMandatorData;
+ lhsProvideFullMandatorData = this.isProvideFullMandatorData();
+ Boolean rhsProvideFullMandatorData;
+ rhsProvideFullMandatorData = that.isProvideFullMandatorData();
+ if (!strategy.equals(LocatorUtils.property(thisLocator, "provideFullMandatorData", lhsProvideFullMandatorData), LocatorUtils.property(thatLocator, "provideFullMandatorData", rhsProvideFullMandatorData), lhsProvideFullMandatorData, rhsProvideFullMandatorData)) {
+ return false;
+ }
+ }
+ {
+ Boolean lhsUseCondition;
+ lhsUseCondition = this.isUseCondition();
+ Boolean rhsUseCondition;
+ rhsUseCondition = that.isUseCondition();
+ if (!strategy.equals(LocatorUtils.property(thisLocator, "useCondition", lhsUseCondition), LocatorUtils.property(thatLocator, "useCondition", rhsUseCondition), lhsUseCondition, rhsUseCondition)) {
+ return false;
+ }
+ }
+ {
+ BigInteger lhsConditionLength;
+ lhsConditionLength = this.getConditionLength();
+ BigInteger rhsConditionLength;
+ rhsConditionLength = that.getConditionLength();
+ if (!strategy.equals(LocatorUtils.property(thisLocator, "conditionLength", lhsConditionLength), LocatorUtils.property(thatLocator, "conditionLength", rhsConditionLength), lhsConditionLength, rhsConditionLength)) {
+ return false;
+ }
+ }
+ {
+ String lhsSourceID;
+ lhsSourceID = this.getSourceID();
+ String rhsSourceID;
+ rhsSourceID = that.getSourceID();
+ if (!strategy.equals(LocatorUtils.property(thisLocator, "sourceID", lhsSourceID), LocatorUtils.property(thatLocator, "sourceID", rhsSourceID), lhsSourceID, rhsSourceID)) {
+ return false;
+ }
+ }
+ {
+ Boolean lhsProvideAllErrors;
+ lhsProvideAllErrors = this.isProvideAllErrors();
+ Boolean rhsProvideAllErrors;
+ rhsProvideAllErrors = that.isProvideAllErrors();
+ if (!strategy.equals(LocatorUtils.property(thisLocator, "provideAllErrors", lhsProvideAllErrors), LocatorUtils.property(thatLocator, "provideAllErrors", rhsProvideAllErrors), lhsProvideAllErrors, rhsProvideAllErrors)) {
+ return false;
+ }
+ }
+ return true;
+ }
+
+ public boolean equals(Object object) {
+ final EqualsStrategy strategy = JAXBEqualsStrategy.INSTANCE;
+ return equals(null, null, object, strategy);
+ }
+
+ public int hashCode(ObjectLocator locator, HashCodeStrategy strategy) {
+ int currentHashCode = 1;
+ {
+ Boolean theIsActive;
+ theIsActive = this.isIsActive();
+ currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "isActive", theIsActive), currentHashCode, theIsActive);
+ }
+ {
+ Boolean theProvideStammzahl;
+ theProvideStammzahl = this.isProvideStammzahl();
+ currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "provideStammzahl", theProvideStammzahl), currentHashCode, theProvideStammzahl);
+ }
+ {
+ Boolean theProvideAUTHBlock;
+ theProvideAUTHBlock = this.isProvideAUTHBlock();
+ currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "provideAUTHBlock", theProvideAUTHBlock), currentHashCode, theProvideAUTHBlock);
+ }
+ {
+ Boolean theProvideIdentityLink;
+ theProvideIdentityLink = this.isProvideIdentityLink();
+ currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "provideIdentityLink", theProvideIdentityLink), currentHashCode, theProvideIdentityLink);
+ }
+ {
+ Boolean theProvideCertificate;
+ theProvideCertificate = this.isProvideCertificate();
+ currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "provideCertificate", theProvideCertificate), currentHashCode, theProvideCertificate);
+ }
+ {
+ Boolean theProvideFullMandatorData;
+ theProvideFullMandatorData = this.isProvideFullMandatorData();
+ currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "provideFullMandatorData", theProvideFullMandatorData), currentHashCode, theProvideFullMandatorData);
+ }
+ {
+ Boolean theUseCondition;
+ theUseCondition = this.isUseCondition();
+ currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "useCondition", theUseCondition), currentHashCode, theUseCondition);
+ }
+ {
+ BigInteger theConditionLength;
+ theConditionLength = this.getConditionLength();
+ currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "conditionLength", theConditionLength), currentHashCode, theConditionLength);
+ }
+ {
+ String theSourceID;
+ theSourceID = this.getSourceID();
+ currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "sourceID", theSourceID), currentHashCode, theSourceID);
+ }
+ {
+ Boolean theProvideAllErrors;
+ theProvideAllErrors = this.isProvideAllErrors();
+ currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "provideAllErrors", theProvideAllErrors), currentHashCode, theProvideAllErrors);
+ }
+ return currentHashCode;
+ }
+
+ public int hashCode() {
+ final HashCodeStrategy strategy = JAXBHashCodeStrategy.INSTANCE;
+ return this.hashCode(null, strategy);
+ }
+
+}