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

com.vikingbrain.nmt.client.modules.impl.ModuleNetworkBrowseImpl 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.client.modules.impl;

import com.vikingbrain.nmt.client.modules.ModuleNetworkBrowse;
import com.vikingbrain.nmt.operations.TheDavidboxOperationFactory;
import com.vikingbrain.nmt.operations.networkbrowse.ListNetworkResourceOperation;

/**
 * This module is use to browse Samba and NFS shared.
 * 
 * @author vikingBrain
 */
public class ModuleNetworkBrowseImpl extends AbstractModule implements ModuleNetworkBrowse {

	/**
	 * Constructor.
	 * @param operationFactory the operation factory
	 */
	public ModuleNetworkBrowseImpl(TheDavidboxOperationFactory operationFactory) {
		super(operationFactory);
	}
	
	/** {@inheritDoc} */		
	public ListNetworkResourceOperation buildListNetworkResourceOperation() {
		return new ListNetworkResourceOperation(getOperationFactory());
	}

	//TODO list_network_content
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy