Back to project page transloadit-Android-sdk.
The source code is released under:
MIT License
If you think the Android project transloadit-Android-sdk listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package hu.szabot.transloadit.assembly; /*from w w w .ja v a 2 s. com*/ import java.util.HashMap; /// <summary> /// Defines the major functionality of Transloadit step /// </summary> public interface IStep { /** * Sets an option for a step in the assembly * @param key Name of the option * @param value Value of the option */ void setOption(String key, Object value); /**Gets the current step as dictionary * * @return Step Map */ public HashMap<String, Object> getMap(); }