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

org.opencms.db.jpa.persistence.CmsDAOUserData Maven / Gradle / Ivy

Go to download

OpenCms is an enterprise-ready, easy to use website content management system based on Java and XML technology. Offering a complete set of features, OpenCms helps content managers worldwide to create and maintain beautiful websites fast and efficiently.

There is a newer version: 18.0
Show newest version
/*
 * This library is part of OpenCms -
 * the Open Source Content Management System
 *
 * Copyright (c) Alkacon Software GmbH & Co. KG (http://www.alkacon.com)
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
 * Lesser General Public License for more details.
 *
 * For further information about Alkacon Software, please see the
 * company website: http://www.alkacon.com
 *
 * For further information about OpenCms, please see the
 * project website: http://www.opencms.org
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */

package org.opencms.db.jpa.persistence;

import java.io.Serializable;

import javax.persistence.Basic;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.IdClass;
import javax.persistence.Lob;
import javax.persistence.Table;

/**
 * This data access object represents a user data entry inside the table "cms_userdata".

* * @since 8.0.0 */ @Entity @Table(name = "CMS_USERDATA") @IdClass(CmsDAOUserData.CmsDAOUserDataPK.class) public class CmsDAOUserData { /** * This class implements the primary key for a user data entry in the table "cms_userdata".

*/ public static class CmsDAOUserDataPK implements Serializable { /** The serial Version UID. */ private static final long serialVersionUID = 6035468570220023953L; /** * A tokenizer.

*/ private static class Tokenizer { /** The last index. */ private int m_last; /** The String to tokenize. */ private final String m_str; /** * The constructor for this tokenizer.

* * @param str the String to tokenize.

*/ public Tokenizer(String str) { m_str = str; } /** * Returns the next token.

* * @return the next token */ public String nextToken() { int next = m_str.indexOf("::", m_last); String part; if (next == -1) { part = m_str.substring(m_last); m_last = m_str.length(); } else { part = m_str.substring(m_last, next); m_last = next + 2; } return part; } } /** The data key. */ public String m_dataKey; /** The user id. */ public String m_userId; /** * The default constructor.

*/ public CmsDAOUserDataPK() { // noop } /** * A public constructor to generate a primary key from a given String.

* * @param str the String to generate the id from */ public CmsDAOUserDataPK(String str) { fromString(str); } static { // register persistent class in JVM try { Class.forName("org.opencms.db.jpa.persistence.CmsDAOUserData"); } catch (Exception e) { // noop } } /** * @see java.lang.Object#equals(java.lang.Object) */ @Override public boolean equals(Object obj) { if (this == obj) { return true; } if ((obj == null) || (obj.getClass() != getClass())) { return false; } CmsDAOUserDataPK other = (CmsDAOUserDataPK)obj; return (((m_dataKey == null) && (other.m_dataKey == null)) || ((m_dataKey != null) && m_dataKey.equals(other.m_dataKey))) && (((m_userId == null) && (other.m_userId == null)) || ((m_userId != null) && m_userId.equals(other.m_userId))); } /** * Returns the dataKey.

* * @return the dataKey */ public String getDataKey() { return m_dataKey; } /** * Returns the userId.

* * @return the userId */ public String getUserId() { return m_userId; } /** * @see java.lang.Object#hashCode() */ @Override public int hashCode() { int rs = 17; rs = (rs * 37) + ((m_dataKey == null) ? 0 : m_dataKey.hashCode()); rs = (rs * 37) + ((m_userId == null) ? 0 : m_userId.hashCode()); return rs; } /** * Sets the dataKey.

* * @param dataKey the dataKey to set */ public void setDataKey(String dataKey) { m_dataKey = dataKey; } /** * Sets the userId.

* * @param userId the userId to set */ public void setUserId(String userId) { m_userId = userId; } /** * @see java.lang.Object#toString() */ @Override public String toString() { return m_dataKey + "::" + m_userId; } /** * Parses the publish tag from and the resource id from a given String.

* * @param str the String to parse */ private void fromString(String str) { Tokenizer toke = new Tokenizer(str); str = toke.nextToken(); if ("null".equals(str)) { m_dataKey = null; } else { m_dataKey = str; } str = toke.nextToken(); if ("null".equals(str)) { m_userId = null; } else { m_userId = str; } } } /** The data key. */ @Id @Column(name = "DATA_KEY") private String m_dataKey; /** The data type. */ @Basic @Column(name = "DATA_TYPE", nullable = false, length = 128) private String m_dataType; /** The data value. */ @Basic @Lob @Column(name = "DATA_VALUE") private byte[] m_dataValue; /** The user id. */ @Id @Column(name = "USER_ID", length = 36) private String m_userId; /** * The default constructor.

*/ public CmsDAOUserData() { // noop } /** * A public constructor for generating a new user data object with an unique id.

* * @param dataKey the data key * @param userId the user id */ public CmsDAOUserData(String dataKey, String userId) { m_dataKey = dataKey; m_userId = userId; } /** * Returns the dataKey.

* * @return the dataKey */ public String getDataKey() { return m_dataKey; } /** * Returns the dataType.

* * @return the dataType */ public String getDataType() { return m_dataType; } /** * Returns the dataValue.

* * @return the dataValue */ public byte[] getDataValue() { return m_dataValue; } /** * Returns the userId.

* * @return the userId */ public String getUserId() { return m_userId; } /** * Sets the dataKey.

* * @param dataKey the dataKey to set */ public void setDataKey(String dataKey) { m_dataKey = dataKey; } /** * Sets the dataType.

* * @param dataType the dataType to set */ public void setDataType(String dataType) { m_dataType = dataType; } /** * Sets the dataValue.

* * @param dataValue the dataValue to set */ public void setDataValue(byte[] dataValue) { m_dataValue = dataValue; } /** * Sets the userId.

* * @param userId the userId to set */ public void setUserId(String userId) { m_userId = userId; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy