Package ehistory.server.api.model.response

Examples of ehistory.server.api.model.response.GetEventDetailsResponse


        response.setPeriods(new ArrayList<Period>(periods.values()));
        return response;
    }

    public GetEventDetailsResponse process(GetEventDetailsRequest request) throws ServiceException {
        GetEventDetailsResponse response = new GetEventDetailsResponse();
        response.setEventDetail(events.get(request.getEventUid()));
        return response;
    }
View Full Code Here

TOP

Related Classes of ehistory.server.api.model.response.GetEventDetailsResponse

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.