All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.unbound.client.BaseObject Maven / Gradle / Ivy

Go to download

This is a collection of JAVA libraries that implement Unbound cryptographic classes for JAVA provider, PKCS11 wrapper, cryptoki, and advapi

There is a newer version: 42761
Show newest version
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();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy