2009-09-08 09:55:22 +00:00

171 lines
4.2 KiB
Java

/*
* Copyright (C) 2005-2009 Alfresco Software Limited.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
* This program 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 General Public License for more details.
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
* As a special exception to the terms and conditions of version 2.0 of
* the GPL, you may redistribute this Program in connection with Free/Libre
* and Open Source Software ("FLOSS") applications as described in Alfresco's
* FLOSS exception. You should have recieved a copy of the text describing
* the FLOSS exception, and it is also available here:
* http://www.alfresco.com/legal/licensing"
*/
package org.alfresco.repo.domain.avm;
import java.io.Serializable;
import org.alfresco.util.EqualsHelper;
/**
* Entity bean for <b>avm_version_roots</b> table
*
* @author janv
* @since 3.2
*/
public class AVMVersionRootEntity implements Serializable
{
private static final long serialVersionUID = -3373271203895368258L;
private Long id;
private Integer version;
private Long storeId;
private Long rootNodeId;
private Long createdDate;
private String creator;
private String tag;
private String description;
public Long getId()
{
return id;
}
public void setId(Long id)
{
this.id = id;
}
public Integer getVersion()
{
return version;
}
public void setVersion(Integer version)
{
this.version = version;
}
public Long getRootNodeId()
{
return rootNodeId;
}
public void setRootNodeId(Long rootNodeId)
{
this.rootNodeId = rootNodeId;
}
public Long getStoreId()
{
return storeId;
}
public void setStoreId(Long storeId)
{
this.storeId = storeId;
}
public Long getCreatedDate()
{
return createdDate;
}
public void setCreatedDate(Long createdDate)
{
this.createdDate = createdDate;
}
public String getCreator()
{
return creator;
}
public void setCreator(String creator)
{
this.creator = creator;
}
public String getTag()
{
return tag;
}
public void setTag(String tag)
{
this.tag = tag;
}
public String getDescription()
{
return description;
}
public void setDescription(String description)
{
this.description = description;
}
@Override
public int hashCode()
{
return (id == null ? 0 : id.hashCode());
}
@Override
public boolean equals(Object obj)
{
if (this == obj)
{
return true;
}
else if (obj instanceof AVMVersionRootEntity)
{
AVMVersionRootEntity that = (AVMVersionRootEntity) obj;
return (EqualsHelper.nullSafeEquals(this.id, that.id));
}
else
{
return false;
}
}
@Override
public String toString()
{
StringBuilder sb = new StringBuilder(512);
sb.append("AVMVersionRootEntity")
.append("[ ID=").append(id)
.append(", version=").append(version)
.append(", storeId=").append(storeId)
.append(", rootNodeId=").append(rootNodeId)
.append(", createdDate=").append(createdDate)
.append(", creator=").append(creator)
.append(", tag=").append(tag)
.append(", description=").append(description)
.append("]");
return sb.toString();
}
}