Package org.archfirst.bfoms.domain.referencedata

Examples of org.archfirst.bfoms.domain.referencedata.Instrument


    }
   
    private static final Instrument toDomainInstrument(
            org.archfirst.bfoms.interfaceout.exchange.referencedataadapter.client.Instrument wsInstrument) {
       
        return new Instrument(
                wsInstrument.getSymbol(),
                wsInstrument.getName(),
                wsInstrument.getExchange());
    }
View Full Code Here


        this.addInstrument("AAPL", "Apple Inc.", "NASDAQ");
        this.addInstrument("CSCO", "Cisco Systems, Inc.", "NASDAQ");
    }
   
    public void addInstrument(String symbol, String name, String exchange) {
        Instrument instrument = new Instrument(symbol, name, exchange);
        instrumentList.add(instrument);
        instrumentMap.put(symbol, instrument);
    }
View Full Code Here

TOP

Related Classes of org.archfirst.bfoms.domain.referencedata.Instrument

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.