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

org.opencms.db.jpa.persistence.CmsDAOHistoryProjectResources 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.Column;
import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.IdClass;
import javax.persistence.Table;

/**
 * This data access object represents a history project resource entry
 * inside the table "cms_history_projectresources".

* * @since 8.0.0 */ @Entity @Table(name = "CMS_HISTORY_PROJECTRESOURCES") @IdClass(CmsDAOHistoryProjectResources.CmsDAOHistoryProjectResourcesPK.class) public class CmsDAOHistoryProjectResources { /** * This class implements the primary key for a history project * resource entry in the table "cms_history_projectresources".

*/ public static class CmsDAOHistoryProjectResourcesPK implements Serializable { /** * 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 serial Version UID. */ private static final long serialVersionUID = 7234143431518918990L; /** The project id. */ public String m_projectId; /** The publish tag. */ public int m_publishTag; /** The resource path. */ public String m_resourcePath; /** * The default constructor.

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

* * @param str the String to generate the id from */ public CmsDAOHistoryProjectResourcesPK(String str) { fromString(str); } static { // register persistent class in JVM try { Class.forName("org.opencms.db.jpa.persistence.CmsHistoryProjectresources"); } 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; } CmsDAOHistoryProjectResourcesPK other = (CmsDAOHistoryProjectResourcesPK)obj; return (((m_projectId == null) && (other.m_projectId == null)) || ((m_projectId != null) && m_projectId.equals(other.m_projectId))) && (m_publishTag == other.m_publishTag) && (((m_resourcePath == null) && (other.m_resourcePath == null)) || ((m_resourcePath != null) && m_resourcePath.equals(other.m_resourcePath))); } /** * Returns the projectId.

* * @return the projectId */ public String getProjectId() { return m_projectId; } /** * Returns the publishTag.

* * @return the publishTag */ public int getPublishTag() { return m_publishTag; } /** * Returns the resourcePath.

* * @return the resourcePath */ public String getResourcePath() { return m_resourcePath; } /** * @see java.lang.Object#hashCode() */ @Override public int hashCode() { int rs = 17; rs = (rs * 37) + ((m_projectId == null) ? 0 : m_projectId.hashCode()); rs = (rs * 37) + m_publishTag; rs = (rs * 37) + ((m_resourcePath == null) ? 0 : m_resourcePath.hashCode()); return rs; } /** * Sets the projectId.

* * @param projectId the projectId to set */ public void setProjectId(String projectId) { m_projectId = projectId; } /** * Sets the publishTag.

* * @param publishTag the publishTag to set */ public void setPublishTag(int publishTag) { m_publishTag = publishTag; } /** * Sets the resourcePath.

* * @param resourcePath the resourcePath to set */ public void setResourcePath(String resourcePath) { m_resourcePath = resourcePath; } /** * @see java.lang.Object#toString() */ @Override public String toString() { return m_projectId + "::" + String.valueOf(m_publishTag) + "::" + m_resourcePath; } /** * 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_projectId = null; } else { m_projectId = str; } str = toke.nextToken(); m_publishTag = Integer.parseInt(str); str = toke.nextToken(); if ("null".equals(str)) { m_resourcePath = null; } else { m_resourcePath = str; } } } /** The project id. */ @Id @Column(name = "PROJECT_ID", length = 36) private String m_projectId; /** The publish tag. */ @Id @Column(name = "PUBLISH_TAG") private int m_publishTag; /** The resource path. */ @Id @Column(name = "RESOURCE_PATH", length = 1024) private String m_resourcePath; /** * The default constructor.

*/ public CmsDAOHistoryProjectResources() { // noop } /** * A public constructor for generating a new history project resource object with an unique id.

* * @param projectId the project id * @param publishTag the publish tag * @param resourcePath the resource path */ public CmsDAOHistoryProjectResources(String projectId, int publishTag, String resourcePath) { m_projectId = projectId; m_publishTag = publishTag; m_resourcePath = resourcePath; } /** * Returns the projectId.

* * @return the projectId */ public String getProjectId() { return m_projectId; } /** * Returns the publishTag.

* * @return the publishTag */ public int getPublishTag() { return m_publishTag; } /** * Returns the resourcePath.

* * @return the resourcePath */ public String getResourcePath() { return m_resourcePath; } /** * Sets the projectId.

* * @param projectId the projectId to set */ public void setProjectId(String projectId) { m_projectId = projectId; } /** * Sets the publishTag.

* * @param publishTag the publishTag to set */ public void setPublishTag(int publishTag) { m_publishTag = publishTag; } /** * Sets the resourcePath.

* * @param resourcePath the resourcePath to set */ public void setResourcePath(String resourcePath) { m_resourcePath = resourcePath; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy