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 . j a v a 2 s.c o m*/ import java.util.HashMap; /// <summary> /// Represents a Transloadit step /// </summary> public class Step implements IStep { /**Stores the options of the current step*/ protected HashMap<String, Object> options; /**Creates a new step*/ public Step() { options = new HashMap<String, Object>(); } public void setOption(String key, Object value) { options.put(key, value); } public HashMap<String, Object> getMap() { return options; } }