Package com.derbysoft.spitfire.fastjson.dto

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


    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);
        return rs;
    }
View Full Code Here


        availGuarantees.add(availGuaranteeDTO);
        return availGuarantees;
    }

    private TPAExtensionsDTO createExpectedEpaExtensions() {
        TPAExtensionsDTO tpaExtensions = new TPAExtensionsDTO();
        tpaExtensions.setElement("description", GUARANTEE_DESCRIPTION);
        return tpaExtensions;
    }
View Full Code Here

TOP

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

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.