Properly wrapped AttributeService for remoting.

Wired remote AttributeService into virtualization server.
Added AVMLockingService to ServiceRegistry.


git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@5570 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Britt Park
2007-04-27 15:36:13 +00:00
parent fc2ebe47d0
commit fe970f03fe
7 changed files with 620 additions and 20 deletions

View File

@@ -42,11 +42,11 @@ import org.alfresco.repo.attributes.StringAttributeValue;
*/
public class AVMLock implements Serializable
{
public static String PATH = "path";
public static String STORE = "store";
public static String OWNERS = "owners";
public static String WEBPROJECT = "webproject";
public static String TYPE = "type";
public static final String PATH = "path";
public static final String STORE = "store";
public static final String OWNERS = "owners";
public static final String WEBPROJECT = "webproject";
public static final String TYPE = "type";
private static final long serialVersionUID = -8026344276097527239L;
@@ -121,7 +121,6 @@ public class AVMLock implements Serializable
ListAttribute owners = new ListAttributeValue();
for (String owner : fOwners)
{
// The value is a dummy.
owners.add(new StringAttributeValue(owner));
}
lockData.put(OWNERS, owners);