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

com.ionic.sdk.agent.key.KeyBase Maven / Gradle / Ivy

Go to download

The Ionic Java SDK provides an easy-to-use interface to the Ionic Platform.

There is a newer version: 2.9.0
Show newest version
package com.ionic.sdk.agent.key;

/**
 * Common base interface for all Ionic Keys.
 */
 public interface KeyBase {

     /**
      * Get an identifier for the key.
      *
      * @return String keyId.
      */
     String getId();

     /**
      * Set the identifier of the key.
      *
      * @param keyId
      *      The key id String.
      */
     void setId(String keyId);

     /**
      * Get the key data.
      *
      * @return byte[] keyBytes.
      */
     byte[] getKey();

     /**
      * Set the key data.
      *
      * @param keyBytes
      *      The key bytes.
      */
     void setKey(byte[] keyBytes);
 }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy