Examples of ForsendelseRest


Examples of no.kommune.bergen.soa.svarut.dto.ForsendelseRest

  @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
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.