Package no.kommune.bergen.soa.svarut.util

Examples of no.kommune.bergen.soa.svarut.util.ForsendelseMapper


  @GET
  @Path("/retrieve/{juridiskEnhet}/{id}")
  @Produces("text/xml")
  public ForsendelseRest retrieve( @PathParam("id") String id, @PathParam("juridiskEnhet") String juridiskEnhet ) {
    no.kommune.bergen.soa.svarut.dto.Forsendelse forsendelse = new ForsendelseMapper().toDto(serviceDelegate.retrieve(id, JuridiskEnhetFactory.create(juridiskEnhet)));
    ForsendelseRest result = new ForsendelseRest();
    result.setForsendelse( forsendelse );
    return result;
  }
View Full Code Here

TOP

Related Classes of no.kommune.bergen.soa.svarut.util.ForsendelseMapper

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.