Fix ALFCOM-3384 - unable to create WCM form-based content

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@16706 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Jan Vonka
2009-10-06 10:18:29 +00:00
parent a63369dbb7
commit 174e22a9f2
5 changed files with 37 additions and 32 deletions

View File

@@ -25,7 +25,6 @@
package org.alfresco.repo.domain.avm;
import org.alfresco.repo.domain.PropertyValue;
import org.alfresco.util.EqualsHelper;
/**
* Entity bean for <b>avm_node_properties</b> table.
@@ -45,7 +44,6 @@ public class AVMNodePropertyEntity extends PropertyValue
{
}
// TODO redo
public AVMNodePropertyEntity(long nodeId, Long qnameId, PropertyValue value)
{
setNodeId(nodeId);
@@ -80,16 +78,6 @@ public class AVMNodePropertyEntity extends PropertyValue
this.qnameId = qnameId;
}
public void setSerializable(byte[] data)
{
setSerializableValue(data);
}
public byte[] getSerializable()
{
return (byte[])getSerializableValue();
}
@Override
public int hashCode()
{