MNT-12369 "CryptoDoc: Cluster: removeMasterKey operation removes master key alias only on one cluster node"

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@85879 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Steven Glover
2014-09-29 10:09:47 +00:00
parent 4351376552
commit 9b40d6977c
6 changed files with 97 additions and 3 deletions

View File

@@ -0,0 +1,54 @@
/*
* Copyright 2014-2014 Alfresco Software, Ltd. All rights reserved.
*
* License rights for this program may be obtained from Alfresco Software, Ltd.
* pursuant to a written agreement and any use of this program without such an
* agreement is prohibited.
*/
package org.alfresco.repo.domain.contentdata;
import java.io.Serializable;
/**
*
* @author sglover
*
*/
public class SymmetricKeyCount implements Serializable
{
private static final long serialVersionUID = -7823962733045613866L;
private String masterKeyAlias;
private int count;
public SymmetricKeyCount()
{
}
public String getMasterKeyAlias()
{
return masterKeyAlias;
}
public void setMasterKeyAlias(String masterKeyAlias)
{
this.masterKeyAlias = masterKeyAlias;
}
public int getCount()
{
return count;
}
public void setCount(int count)
{
this.count = count;
}
@Override
public String toString()
{
return "SymmetricKeyCount [masterKeyAlias=" + masterKeyAlias
+ ", count=" + count + "]";
}
}