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