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

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

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

import com.stratumn.sdk.model.client.*;

public class SdkOptions {
  String workflowId;
  Secret secret;
  Endpoints endpoints;

  public SdkOptions(String workflowId, Secret secret) {
    this.workflowId = workflowId;
    this.secret = secret;
    this.endpoints = new Endpoints(Environment.RELEASE);
  }

  public SdkOptions(String workflowId, Secret secret, Environment env) {
    this.workflowId = workflowId;
    this.secret = secret;
    this.endpoints = new Endpoints(env);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy