Package org.company.recordshop.service.dto

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


      final Map<Object, Object> translated) {
    if (translated.containsKey((source))) {
      return (SimpleRecordDto) translated.get(source);
    }
    Assert.notNull(source, "argument [source] may not be null");
    SimpleRecordDto result = new SimpleRecordDto(source.getId(), source
        .getVersion());
    result.setAsin(source.getAsin());
    result.setPrice(source.getPrice());
    result.setType(typeTranslator.toDto(source.getType()));

    translated.put(source, result);

    return result;
  }
View Full Code Here

TOP

Related Classes of org.company.recordshop.service.dto.SimpleRecordDto

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.