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

com.tecacet.finance.service.asset.AssetService Maven / Gradle / Ivy

package com.tecacet.finance.service.asset;

import com.tecacet.finance.model.Asset;

import java.io.IOException;
import java.util.Set;

/**
 * Get the list of assets traded in various exchanges
 */
public interface AssetService {

    /**
     * Get all traded assets
     * @return all assets
     * @throws IOException if there is a problem with the connection
     */
    Set getAssets() throws IOException;

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy