mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-10-08 14:51:49 +00:00
125484 slanglois: MNT-16155 Update source headers - remove old Copyrights from Java and JSP dource files git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/BRANCHES/DEV/5.1.N/root@125603 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
66 lines
1.5 KiB
Java
66 lines
1.5 KiB
Java
package org.alfresco.repo.domain.node;
|
|
|
|
import java.io.Serializable;
|
|
|
|
/**
|
|
* Key for caches that need to be bound implicitly to the current version of a node.
|
|
*
|
|
* @author Derek Hulley
|
|
* @since 4.0
|
|
*/
|
|
public class NodeVersionKey implements Serializable
|
|
{
|
|
private static final long serialVersionUID = 2241045540959490539L;
|
|
|
|
private final Long nodeId;
|
|
private final Long version;
|
|
|
|
public NodeVersionKey(Long nodeId, Long version)
|
|
{
|
|
this.nodeId = nodeId;
|
|
this.version = version;
|
|
}
|
|
|
|
@Override
|
|
public boolean equals(Object other)
|
|
{
|
|
if (this == other)
|
|
{
|
|
return true;
|
|
}
|
|
if (!(other instanceof NodeVersionKey))
|
|
{
|
|
return false;
|
|
}
|
|
NodeVersionKey o = (NodeVersionKey)other;
|
|
return nodeId.equals(o.nodeId) && version.equals(o.version);
|
|
}
|
|
|
|
@Override
|
|
public int hashCode()
|
|
{
|
|
return nodeId.hashCode() + version.hashCode()*37;
|
|
}
|
|
|
|
@Override
|
|
public String toString()
|
|
{
|
|
StringBuilder builder = new StringBuilder();
|
|
builder.append("NodeVersionKey ")
|
|
.append("[nodeId=").append(nodeId)
|
|
.append(", version=").append(version)
|
|
.append("]");
|
|
return builder.toString();
|
|
}
|
|
|
|
public Long getNodeId()
|
|
{
|
|
return nodeId;
|
|
}
|
|
|
|
public Long getVersion()
|
|
{
|
|
return version;
|
|
}
|
|
}
|