Examples of RelationExample


Examples of org.company.recordshop.domain.RelationExample

   *
   * @return {@link RelationExample}, the resulting businessclass object.
   */
  public RelationExample exampleFromDto(final RelationDto source) {
    Assert.notNull(source, "argument [source] may not be null");
    RelationExample result = new RelationExample();

    if (source.getName() != null) {
      result.setName(source.getName());
    }
    if (source.getSince() != null) {
      result.setSince(source.getSince());
    }

    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.