Package org.springframework.nanotrader.service.domain

Examples of org.springframework.nanotrader.service.domain.PortfolioSummary


    public PortfolioSummary findPortfolioSummary(Integer accountId) {
        if (log.isDebugEnabled()) {
            log.debug("TradingServiceFacade.findPortfolioSummary: accountId=" + accountId);
        }
        org.springframework.nanotrader.data.domain.PortfolioSummary portfolioSummary = tradingService.findPortfolioSummary(accountId);
        PortfolioSummary portfolioSummaryResponse = new PortfolioSummary();
        mapper.map(portfolioSummary, portfolioSummaryResponse, PORTFOLIO_SUMMARY_MAPPING);
        if (log.isDebugEnabled()) {
            log.debug("TradingServiceFacade.findPortfolioSummary: completed successfully.");
        }
        return portfolioSummaryResponse;
View Full Code Here

TOP

Related Classes of org.springframework.nanotrader.service.domain.PortfolioSummary

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.