Examples of TPAExtensionsDTO


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

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

        availGuarantees.add(availGuaranteeDTO);
        return availGuarantees;
    }

    private TPAExtensionsDTO createExpectedEpaExtensions() {
        TPAExtensionsDTO tpaExtensions = new TPAExtensionsDTO();
        tpaExtensions.setElement("description", GUARANTEE_DESCRIPTION);
        return tpaExtensions;
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.