com.descope.sdk.mgmt.FlowService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-sdk Show documentation
Show all versions of java-sdk Show documentation
Java library used to integrate with Descope.
The newest version!
package com.descope.sdk.mgmt;
import com.descope.exception.DescopeException;
import com.descope.model.flow.Flow;
import com.descope.model.flow.FlowResponse;
import com.descope.model.flow.FlowsResponse;
import com.descope.model.flow.Screen;
import com.descope.model.flow.Theme;
import java.util.List;
public interface FlowService {
FlowsResponse listFlows() throws DescopeException;
FlowResponse exportFlow(String flowID) throws DescopeException;
FlowResponse importFlow(String flowID, Flow flow, List screens) throws DescopeException;
Theme exportTheme() throws DescopeException;
Theme importTheme(Theme theme) throws DescopeException;
}