move cache api to scm-core

This commit is contained in:
Sebastian Sdorra
2010-11-07 16:07:14 +01:00
parent 8a016c15aa
commit 12ba98c49b
4 changed files with 10 additions and 1 deletions

View File

@@ -29,6 +29,8 @@
*
*/
package sonia.scm.repository;
//~--- non-JDK imports --------------------------------------------------------
@@ -37,6 +39,8 @@ import sonia.scm.util.Util;
//~--- JDK imports ------------------------------------------------------------
import java.io.Serializable;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlRootElement;
@@ -47,9 +51,14 @@ import javax.xml.bind.annotation.XmlRootElement;
*/
@XmlRootElement(name = "permissions")
@XmlAccessorType(XmlAccessType.FIELD)
public class Permission
public class Permission implements Serializable
{
/** Field description */
private static final long serialVersionUID = -2915175031430884040L;
//~--- constructors ---------------------------------------------------------
/**
* Constructs ...
*