mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
Remove tabs after code check for ACE-3118
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@88149 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -16,39 +16,39 @@ import java.io.Serializable;
|
||||
*/
|
||||
public class SymmetricKeyCount implements Serializable
|
||||
{
|
||||
private static final long serialVersionUID = -7823962733045613866L;
|
||||
private static final long serialVersionUID = -7823962733045613866L;
|
||||
|
||||
private String masterKeyAlias;
|
||||
private int count;
|
||||
private String masterKeyAlias;
|
||||
private int count;
|
||||
|
||||
public SymmetricKeyCount()
|
||||
{
|
||||
}
|
||||
public SymmetricKeyCount()
|
||||
{
|
||||
}
|
||||
|
||||
public String getMasterKeyAlias()
|
||||
{
|
||||
return masterKeyAlias;
|
||||
}
|
||||
public String getMasterKeyAlias()
|
||||
{
|
||||
return masterKeyAlias;
|
||||
}
|
||||
|
||||
public void setMasterKeyAlias(String masterKeyAlias)
|
||||
{
|
||||
this.masterKeyAlias = masterKeyAlias;
|
||||
}
|
||||
public void setMasterKeyAlias(String masterKeyAlias)
|
||||
{
|
||||
this.masterKeyAlias = masterKeyAlias;
|
||||
}
|
||||
|
||||
public int getCount()
|
||||
{
|
||||
return count;
|
||||
}
|
||||
public int getCount()
|
||||
{
|
||||
return count;
|
||||
}
|
||||
|
||||
public void setCount(int count)
|
||||
{
|
||||
this.count = count;
|
||||
}
|
||||
public void setCount(int count)
|
||||
{
|
||||
this.count = count;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString()
|
||||
{
|
||||
return "SymmetricKeyCount [masterKeyAlias=" + masterKeyAlias
|
||||
+ ", count=" + count + "]";
|
||||
}
|
||||
@Override
|
||||
public String toString()
|
||||
{
|
||||
return "SymmetricKeyCount [masterKeyAlias=" + masterKeyAlias
|
||||
+ ", count=" + count + "]";
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user