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

com.bazaarvoice.sswf.InputParser.scala Maven / Gradle / Ivy

There is a newer version: 5.2
Show newest version
package com.bazaarvoice.sswf

/**
 * Marshaller for workflow input. Simply provide the mechanism to serialize and deserialize workflow inputs.
 * @tparam SSWFInput The JVM object representing your workflow input.
 */
trait InputParser[SSWFInput] {
  def serialize(input: SSWFInput): String
  def deserialize(inputString: String): SSWFInput
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy