mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-06-02 17:35:18 +00:00
Schema has been updated, DAO written, garbage collection updated to clean out aspects. Also some seemingly unnecessary changes in visibility declarations to deal with strange intermittent Spring wiring failures in one of my tests. git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/BRANCHES/WCM-DEV2/root@3560 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
106 lines
2.2 KiB
Java
106 lines
2.2 KiB
Java
/*
|
|
* Copyright (C) 2006 Alfresco, Inc.
|
|
*
|
|
* Licensed under the Mozilla Public License version 1.1
|
|
* with a permitted attribution clause. You may obtain a
|
|
* copy of the License at
|
|
*
|
|
* http://www.alfresco.org/legal/license.txt
|
|
*
|
|
* Unless required by applicable law or agreed to in writing,
|
|
* software distributed under the License is distributed on an
|
|
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
|
|
* either express or implied. See the License for the specific
|
|
* language governing permissions and limitations under the
|
|
* License.
|
|
*/
|
|
|
|
package org.alfresco.repo.avm;
|
|
|
|
import java.io.Serializable;
|
|
|
|
import org.alfresco.service.namespace.QName;
|
|
|
|
/**
|
|
* Simple bean that implements AVMAspectName.
|
|
* @author britt
|
|
*/
|
|
class AVMAspectNameImpl implements AVMAspectName, Serializable
|
|
{
|
|
private static final long serialVersionUID = -6282415309583571934L;
|
|
|
|
/**
|
|
* The Node that has the named aspect.
|
|
*/
|
|
private AVMNode fNode;
|
|
|
|
/**
|
|
* The name of the Aspect.
|
|
*/
|
|
private QName fName;
|
|
|
|
/**
|
|
* Default constructor.
|
|
*/
|
|
public AVMAspectNameImpl()
|
|
{
|
|
}
|
|
|
|
/**
|
|
* Set the node that has the Aspect.
|
|
* @param node The node.
|
|
*/
|
|
public void setNode(AVMNode node)
|
|
{
|
|
fNode = node;
|
|
}
|
|
|
|
/**
|
|
* Get the node that has this Aspect name.
|
|
* @return The AVM Node.
|
|
*/
|
|
public AVMNode getNode()
|
|
{
|
|
return fNode;
|
|
}
|
|
|
|
/**
|
|
* Set the name of the Aspect.
|
|
* @param name The QName of the Aspect.
|
|
*/
|
|
public void setName(QName name)
|
|
{
|
|
fName = name;
|
|
}
|
|
|
|
/**
|
|
* Get the name of this Aspect.
|
|
* @return The QName of this aspect.
|
|
*/
|
|
public QName getName()
|
|
{
|
|
return fName;
|
|
}
|
|
|
|
@Override
|
|
public boolean equals(Object obj)
|
|
{
|
|
if (this == obj)
|
|
{
|
|
return true;
|
|
}
|
|
if (!(obj instanceof AVMAspectName))
|
|
{
|
|
return false;
|
|
}
|
|
AVMAspectName o = (AVMAspectName)obj;
|
|
return fNode.equals(o.getNode()) && fName.equals(o.getName());
|
|
}
|
|
|
|
@Override
|
|
public int hashCode()
|
|
{
|
|
return fNode.hashCode() + fName.hashCode();
|
|
}
|
|
}
|