com.unbound.client.BaseObject Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of unbound-java-provider Show documentation
Show all versions of unbound-java-provider Show documentation
This is a collection of JAVA libraries that implement Unbound cryptographic classes for JAVA provider, PKCS11 wrapper, cryptoki, and advapi
package com.unbound.client;
import java.util.Date;
public interface BaseObject
{
Partition getPartition();
ObjectType getType();
Date getInitialDate();
long getUid();
long getReplacedUid();
String getName();
void changeName(Session session, String newName);
void delete(Session session);
void delete();
}