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

com.stratumn.sdk.model.client.PrivateKeySecret Maven / Gradle / Ivy

There is a newer version: 0.0.8
Show newest version
package com.stratumn.sdk.model.client;

public class PrivateKeySecret {

  String privateKey;

  PrivateKeySecret(String privateKey) throws IllegalArgumentException {
    if (privateKey == null) {
      throw new IllegalArgumentException("privateKey cannot be null in PrivateKeySecret");
    }
    this.privateKey = privateKey;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy