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

com.stratumn.sdk.SdkConfig Maven / Gradle / Ivy

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

public class SdkConfig {
  String workflowId;
  String userId;
  String accountId;
  String groupId;
  String ownerId;
  // TODO: Replace this with a real signing key
  // cf: https://github.com/str4d/ed25519-java
  String signingPrivateKey;

  public SdkConfig() {
  }

  public SdkConfig(String workflowId, String userId, String accountId, String groupId, String ownerId,
      String signingPrivateKey) {
    this.workflowId = workflowId;
    this.userId = userId;
    this.accountId = accountId;
    this.groupId = groupId;
    this.ownerId = ownerId;
    this.signingPrivateKey = signingPrivateKey;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy