001: /******************************************************************************
002: * JBoss, a division of Red Hat *
003: * Copyright 2006, Red Hat Middleware, LLC, and individual *
004: * contributors as indicated by the @authors tag. See the *
005: * copyright.txt in the distribution for a full listing of *
006: * individual contributors. *
007: * *
008: * This is free software; you can redistribute it and/or modify it *
009: * under the terms of the GNU Lesser General Public License as *
010: * published by the Free Software Foundation; either version 2.1 of *
011: * the License, or (at your option) any later version. *
012: * *
013: * This software is distributed in the hope that it will be useful, *
014: * but WITHOUT ANY WARRANTY; without even the implied warranty of *
015: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU *
016: * Lesser General Public License for more details. *
017: * *
018: * You should have received a copy of the GNU Lesser General Public *
019: * License along with this software; if not, write to the Free *
020: * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA *
021: * 02110-1301 USA, or see the FSF site: http://www.fsf.org. *
022: ******************************************************************************/package org.jboss.portal.cms.impl;
023:
024: import org.jboss.portal.cms.model.CMSObject;
025:
026: import java.io.Serializable;
027: import java.util.Date;
028:
029: public class CMSObjectImpl implements CMSObject, Serializable {
030: /** The serialVersionUID */
031: private static final long serialVersionUID = -6475622589606925388L;
032:
033: protected String parentUUID;
034:
035: protected String name;
036: protected String versionPath;
037: protected String versionUUID;
038: protected String basePath;
039: protected String baseUUID;
040:
041: protected String description;
042: protected String title;
043: protected Date creationDate;
044: protected Date lastModified;
045:
046: public String getParentUUID() {
047: return parentUUID;
048: }
049:
050: public void setParentUUID(String parentUUID) {
051: this .parentUUID = parentUUID;
052: }
053:
054: public String getName() {
055: return name;
056: }
057:
058: public void setName(String name) {
059: this .name = name;
060: }
061:
062: public String getVersionPath() {
063: return versionPath;
064: }
065:
066: public void setVersionPath(String versionPath) {
067: this .versionPath = versionPath;
068: }
069:
070: public String getVersionUUID() {
071: return versionUUID;
072: }
073:
074: public void setVersionUUID(String versionUUID) {
075: this .versionUUID = versionUUID;
076: }
077:
078: public String getBasePath() {
079: return basePath;
080: }
081:
082: public void setBasePath(String basePath) {
083: this .basePath = basePath;
084: }
085:
086: public String getBaseUUID() {
087: return baseUUID;
088: }
089:
090: public void setBaseUUID(String baseUUID) {
091: this .baseUUID = baseUUID;
092: }
093:
094: public String getDescription() {
095: return description;
096: }
097:
098: public void setDescription(String description) {
099: this .description = description;
100: }
101:
102: public String getTitle() {
103: return title;
104: }
105:
106: public void setTitle(String title) {
107: this .title = title;
108: }
109:
110: public Date getCreationDate() {
111: return creationDate;
112: }
113:
114: public void setCreationDate(Date creationDate) {
115: this .creationDate = creationDate;
116: }
117:
118: public Date getLastModified() {
119: return lastModified;
120: }
121:
122: public void setLastModified(Date lastModified) {
123: this.lastModified = lastModified;
124: }
125: }
|