Package com.volantis.mcs.protocols.ticker.response.attributes

Examples of com.volantis.mcs.protocols.ticker.response.attributes.AddItemAttributes


public class AddItemElement extends TickerResponseElement {

    public AddItemElement(XDIMEContextInternal context) {
        super(TickerResponseElements.ADD_ITEM, context);
       
        protocolAttributes = new AddItemAttributes();
    }
View Full Code Here


   
    // Javadoc inherited
    protected void initialiseElementSpecificAttributes(
            XDIMEContextInternal context, XDIMEAttributes attributes)
            throws XDIMEException {
        AddItemAttributes addItemAttributes = (AddItemAttributes) protocolAttributes;

        addItemAttributes.setItemId(attributes.getValue("", "item-id"));
        addItemAttributes.setChannel(attributes.getValue("", "channel"));
    }
View Full Code Here

TOP

Related Classes of com.volantis.mcs.protocols.ticker.response.attributes.AddItemAttributes

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.