aboutsummaryrefslogtreecommitdiff
path: root/id/server/moa-id-commons/src/main/java/at/gv/egovernment/moa/id/commons/db/dao/config/deprecated/ConnectionParameterClientAuthType.java
diff options
context:
space:
mode:
authorThomas Lenz <tlenz@iaik.tugraz.at>2015-07-20 13:57:09 +0200
committerThomas Lenz <tlenz@iaik.tugraz.at>2015-07-20 13:57:09 +0200
commit77a575c0489e3739c5b6184aa5a7d46c542c35f5 (patch)
tree382ac6edb2e3a5b183ea7fc51fc51228f11fd635 /id/server/moa-id-commons/src/main/java/at/gv/egovernment/moa/id/commons/db/dao/config/deprecated/ConnectionParameterClientAuthType.java
parentf3befac4266567d37f52970e57486af7b87b0b7f (diff)
downloadmoa-id-spss-77a575c0489e3739c5b6184aa5a7d46c542c35f5.tar.gz
moa-id-spss-77a575c0489e3739c5b6184aa5a7d46c542c35f5.tar.bz2
moa-id-spss-77a575c0489e3739c5b6184aa5a7d46c542c35f5.zip
add deprecated MOA-ID 2.x database DAOs to source
Diffstat (limited to 'id/server/moa-id-commons/src/main/java/at/gv/egovernment/moa/id/commons/db/dao/config/deprecated/ConnectionParameterClientAuthType.java')
-rw-r--r--id/server/moa-id-commons/src/main/java/at/gv/egovernment/moa/id/commons/db/dao/config/deprecated/ConnectionParameterClientAuthType.java143
1 files changed, 143 insertions, 0 deletions
diff --git a/id/server/moa-id-commons/src/main/java/at/gv/egovernment/moa/id/commons/db/dao/config/deprecated/ConnectionParameterClientAuthType.java b/id/server/moa-id-commons/src/main/java/at/gv/egovernment/moa/id/commons/db/dao/config/deprecated/ConnectionParameterClientAuthType.java
new file mode 100644
index 000000000..37c09858f
--- /dev/null
+++ b/id/server/moa-id-commons/src/main/java/at/gv/egovernment/moa/id/commons/db/dao/config/deprecated/ConnectionParameterClientAuthType.java
@@ -0,0 +1,143 @@
+//
+// 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.07.20 at 12:19:30 PM CEST
+//
+
+
+package at.gv.egovernment.moa.id.commons.db.dao.config.deprecated;
+
+import java.io.Serializable;
+import javax.persistence.CascadeType;
+import javax.persistence.Entity;
+import javax.persistence.JoinColumn;
+import javax.persistence.ManyToOne;
+import javax.persistence.Table;
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+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 ConnectionParameterClientAuthType complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ *
+ * <pre>
+ * &lt;complexType name="ConnectionParameterClientAuthType">
+ * &lt;complexContent>
+ * &lt;extension base="{http://www.buergerkarte.at/namespaces/moaconfig#}ConnectionParameterServerAuthType">
+ * &lt;sequence>
+ * &lt;element name="ClientKeyStore" minOccurs="0">
+ * &lt;complexType>
+ * &lt;simpleContent>
+ * &lt;extension base="&lt;http://www.w3.org/2001/XMLSchema>anyURI">
+ * &lt;attribute name="password" type="{http://www.w3.org/2001/XMLSchema}string" />
+ * &lt;/extension>
+ * &lt;/simpleContent>
+ * &lt;/complexType>
+ * &lt;/element>
+ * &lt;/sequence>
+ * &lt;/extension>
+ * &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "ConnectionParameterClientAuthType", propOrder = {
+ "clientKeyStore"
+})
+
+
+public class ConnectionParameterClientAuthType
+ extends ConnectionParameterServerAuthType
+ implements Serializable, Equals, HashCode
+{
+
+ @XmlElement(name = "ClientKeyStore")
+ protected ClientKeyStore clientKeyStore;
+
+ /**
+ * Gets the value of the clientKeyStore property.
+ *
+ * @return
+ * possible object is
+ * {@link ClientKeyStore }
+ *
+ */
+ @ManyToOne(targetEntity = ClientKeyStore.class, cascade = {
+ CascadeType.ALL
+ })
+
+ public ClientKeyStore getClientKeyStore() {
+ return clientKeyStore;
+ }
+
+ /**
+ * Sets the value of the clientKeyStore property.
+ *
+ * @param value
+ * allowed object is
+ * {@link ClientKeyStore }
+ *
+ */
+ public void setClientKeyStore(ClientKeyStore value) {
+ this.clientKeyStore = value;
+ }
+
+ public boolean equals(ObjectLocator thisLocator, ObjectLocator thatLocator, Object object, EqualsStrategy strategy) {
+ if (!(object instanceof ConnectionParameterClientAuthType)) {
+ return false;
+ }
+ if (this == object) {
+ return true;
+ }
+ if (!super.equals(thisLocator, thatLocator, object, strategy)) {
+ return false;
+ }
+ final ConnectionParameterClientAuthType that = ((ConnectionParameterClientAuthType) object);
+ {
+ ClientKeyStore lhsClientKeyStore;
+ lhsClientKeyStore = this.getClientKeyStore();
+ ClientKeyStore rhsClientKeyStore;
+ rhsClientKeyStore = that.getClientKeyStore();
+ if (!strategy.equals(LocatorUtils.property(thisLocator, "clientKeyStore", lhsClientKeyStore), LocatorUtils.property(thatLocator, "clientKeyStore", rhsClientKeyStore), lhsClientKeyStore, rhsClientKeyStore)) {
+ 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 = super.hashCode(locator, strategy);
+ {
+ ClientKeyStore theClientKeyStore;
+ theClientKeyStore = this.getClientKeyStore();
+ currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "clientKeyStore", theClientKeyStore), currentHashCode, theClientKeyStore);
+ }
+ return currentHashCode;
+ }
+
+ public int hashCode() {
+ final HashCodeStrategy strategy = JAXBHashCodeStrategy.INSTANCE;
+ return this.hashCode(null, strategy);
+ }
+
+}