com.vikingbrain.nmt.operations.setting.SetRepeatModeOperation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of thedavidbox-client4j Show documentation
Show all versions of thedavidbox-client4j Show documentation
A Java HTTP client for consuming TheDavidBox Service API of Networked Media Tank devices
package com.vikingbrain.nmt.operations.setting;
import java.util.LinkedHashMap;
import com.vikingbrain.nmt.operations.ModuleType;
import com.vikingbrain.nmt.operations.OperationType;
import com.vikingbrain.nmt.operations.TheDavidboxOperationFactory;
import com.vikingbrain.nmt.responses.ResponseSimple;
/**
* Operation that sets current repeat mode.
* Execution example: http://popcorn:8008/setting?arg0=set_repeat_mode&arg1=repeat%20one
*
* @author vikingBrain
*/
public class SetRepeatModeOperation extends AbstractSettingOperation {
/** Operation type. */
private static final OperationType operationType = ModuleType.SETTING.set_repeat_mode;
/** Response target class. */
private static final Class responseTargetClass = ResponseSimple.class;
/** Required attributes. */
//Any options returns from ListRepeatMode operation
private String repeatMode;
/**
* Constructor.
* @param operationFactory the operation factory
* @param repeatMode Any options returns from ListRepeatMode operation
*/
public SetRepeatModeOperation(TheDavidboxOperationFactory operationFactory, String repeatMode) {
super(operationFactory, operationType, responseTargetClass);
this.repeatMode = repeatMode;
}
@Override
/** {@inheritDoc} */
public LinkedHashMap buildHttpArguments(){
//Get http arguments from superclass
LinkedHashMap httpArguments = super.buildHttpArguments();
httpArguments.put("arg1", repeatMode);
return httpArguments;
}
/**
* Getter of property.
* @return the repeatMode
*/
public final String getRepeatMode() {
return repeatMode;
}
/**
* Setter of property.
* @param repeatMode the repeatMode to set
*/
public final void setRepeatMode(String repeatMode) {
this.repeatMode = repeatMode;
}
@Override
public String toString() {
return "SetRepeatModeOperation [repeatMode=" + repeatMode
+ ", getOperationType()=" + getOperationType() + "]";
}
}