com.vikingbrain.nmt.operations.setting.AbstractGetLanguageOperation 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 com.vikingbrain.nmt.operations.OperationType;
import com.vikingbrain.nmt.operations.TheDavidboxOperationFactory;
import com.vikingbrain.nmt.responses.setting.ResponseGetLanguage;
/**
* Abstract class for operation that are just setting language.
*
* @author vikingBrain
*/
public class AbstractGetLanguageOperation extends AbstractSettingOperation {
/** Response target class. */
private static final Class responseTargetClass = ResponseGetLanguage.class;
/**
* Constructor.
* @param operationFactory the operation factory
* @param operationType the operation type
*/
public AbstractGetLanguageOperation(TheDavidboxOperationFactory operationFactory, OperationType operationType) {
super(operationFactory, operationType, responseTargetClass);
}
}