All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.vikingbrain.nmt.operations.file.AbstractFileOperation Maven / Gradle / Ivy

Go to download

A Java HTTP client for consuming TheDavidBox Service API of Networked Media Tank devices

There is a newer version: 1.2.1
Show newest version
package com.vikingbrain.nmt.operations.file;

import com.vikingbrain.nmt.operations.AbstractTheDavidboxOperation;
import com.vikingbrain.nmt.operations.OperationType;
import com.vikingbrain.nmt.operations.TheDavidboxOperationFactory;
import com.vikingbrain.nmt.responses.DavidBoxResponse;

/**
 * Abstract class that represent a operation for the file module.
 * 
 * @author vikingBrain
 *
 * @param  the type of the response object for the operation
 */
public abstract class AbstractFileOperation extends AbstractTheDavidboxOperation {

	/**
	 * Constructor.
	 * @param factory the operation factory
	 * @param operationType the operation type
	 * @param responseTargetClass the response target class
	 */
	protected AbstractFileOperation(TheDavidboxOperationFactory factory, OperationType operationType, Class responseTargetClass) {		
		super(factory, operationType, responseTargetClass);
	}
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy