Package ehistory.server.api.model.request

Examples of ehistory.server.api.model.request.GetMapRequest


        }
    }

    public List<HObject> getMap(MapFilter filter) {
        EventsService eventsService = SpringUtils.lookupBean("eventsService");
        GetMapRequest request = new GetMapRequest();
        request.setFilter(filter);
        try {
            return eventsService.process(request).getObjects();
        } catch (ServiceException e) {
            throw new RuntimeException(e);
        }
View Full Code Here

TOP

Related Classes of ehistory.server.api.model.request.GetMapRequest

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.