Package com.derbysoft.spitfire.fastjson.dto

Examples of com.derbysoft.spitfire.fastjson.dto.ResponseHeader


    }

    public GenericRS<HotelAvailRS> createTest() {
        GenericRS<HotelAvailRS> rs = new GenericRS<HotelAvailRS>();
        rs.setHeader(new ResponseHeader("dsfsdfsd"));
        HotelAvailRS hotelAvailRS = createExpectedHotelAvailRS();
        TPAExtensionsDTO extensions = new TPAExtensionsDTO();
        extensions.getElements().put("dfd", "Dfdf");
        hotelAvailRS.setTpaExtensions(extensions);
        rs.setPayload(hotelAvailRS);
View Full Code Here

TOP

Related Classes of com.derbysoft.spitfire.fastjson.dto.ResponseHeader

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.