mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-24 17:32:48 +00:00
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:
@@ -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);
|
||||
|
Reference in New Issue
Block a user