Examples of KaderDto


Examples of org.company.recordshop.service.dto.KaderDto

  KaderDto toDto(final Kader source, final Map<Object, Object> translated) {
    if (translated.containsKey((source))) {
      return (KaderDto) translated.get(source);
    }
    Assert.notNull(source, "argument [source] may not be null");
    KaderDto result = new KaderDto(source.getId(), source.getVersion());
    result.setNaam(source.getNaam());

    translated.put(source, result);

    for (Organisatie element : source.getOrganisaties()) {
      result.addToOrganisaties(organisatieDtoTranslator.toDto(element,
          translated));
    }

    return result;
  }
View Full Code Here

Examples of org.company.recordshop.service.dto.KaderDto

    private OrganisatieDto ordina;

    @Before
    public void setUp() throws Exception {
        kader = new KaderDto();
        kader.setNaam("Een groot denkraam");
        kader = stateChangeBusinessRuleLocalService
                .readKaderAsKaderDto(stateChangeBusinessRuleLocalService.createKader(kader));

        ordina = new OrganisatieDto();
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.