mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-14 17:58:59 +00:00
130008 gjames: Merged 5.2.N-AHIND (5.2.1) to searchapi (5.2.1) 129751 amorarasu: REPO-164 / REPO-1086 - V1 REST API: Lock Node - review suggestions - added more test cases + utility methods git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/BRANCHES/DEV/5.2.N/root@130271 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
117 lines
3.2 KiB
Java
117 lines
3.2 KiB
Java
/*
|
|
* #%L
|
|
* Alfresco Remote API
|
|
* %%
|
|
* Copyright (C) 2005 - 2016 Alfresco Software Limited
|
|
* %%
|
|
* This file is part of the Alfresco software.
|
|
* If the software was purchased under a paid Alfresco license, the terms of
|
|
* the paid license agreement will prevail. Otherwise, the software is
|
|
* provided under the following open source license terms:
|
|
*
|
|
* Alfresco is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Lesser General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* Alfresco is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
* along with Alfresco. If not, see <http://www.gnu.org/licenses/>.
|
|
* #L%
|
|
*/
|
|
package org.alfresco.rest.api.model;
|
|
|
|
import org.alfresco.repo.lock.mem.Lifetime;
|
|
import org.alfresco.service.cmr.lock.LockType;
|
|
import org.codehaus.jackson.annotate.JsonIgnoreProperties;
|
|
|
|
/**
|
|
* Representation of a lock info
|
|
*
|
|
* @author Ancuta Morarasu
|
|
*/
|
|
@JsonIgnoreProperties({"mappedType"})
|
|
public class LockInfo
|
|
{
|
|
private Integer timeToExpire;
|
|
private LockType2 type;
|
|
private Lifetime lifetime;
|
|
|
|
/**
|
|
* Lock Type enum that maps to the current values in {@link org.alfresco.service.cmr.lock.LockType}.
|
|
* These values describe better the meanings of the lock types.
|
|
*/
|
|
@SuppressWarnings("deprecation")
|
|
public static enum LockType2
|
|
{
|
|
FULL(LockType.READ_ONLY_LOCK),
|
|
ALLOW_OWNER_CHANGES(LockType.WRITE_LOCK);
|
|
// ALLOW_ADD_CHILDREN(LockType.NODE_LOCK); // removed for now, as per REPO-1187
|
|
|
|
private LockType type;
|
|
|
|
private LockType2(LockType type)
|
|
{
|
|
this.type = type;
|
|
}
|
|
|
|
public LockType getType()
|
|
{
|
|
return type;
|
|
}
|
|
}
|
|
|
|
public LockInfo() {}
|
|
|
|
public void setTimeToExpire(Integer timeToExpire)
|
|
{
|
|
this.timeToExpire = timeToExpire;
|
|
}
|
|
|
|
public Integer getTimeToExpire()
|
|
{
|
|
return timeToExpire;
|
|
}
|
|
|
|
public LockType getMappedType()
|
|
{
|
|
return type != null ? type.getType() : null;
|
|
}
|
|
|
|
public LockType2 getType()
|
|
{
|
|
return type;
|
|
}
|
|
|
|
public void setType(String type)
|
|
{
|
|
this.type = LockType2.valueOf(type);
|
|
}
|
|
|
|
public Lifetime getLifetime()
|
|
{
|
|
return lifetime;
|
|
}
|
|
|
|
public void setLifetime(String lifetimeStr)
|
|
{
|
|
this.lifetime = Lifetime.valueOf(lifetimeStr);
|
|
}
|
|
|
|
@Override
|
|
public String toString()
|
|
{
|
|
final StringBuilder sb = new StringBuilder("LockInfo{");
|
|
sb.append(", timeToExpire='").append(timeToExpire).append('\'');
|
|
sb.append(", type='").append(type).append('\'');
|
|
sb.append(", lifetime='").append(lifetime).append('\'');
|
|
sb.append('}');
|
|
return sb.toString();
|
|
}
|
|
|
|
}
|