Package org.springframework.data.simpledb.annotation

Examples of org.springframework.data.simpledb.annotation.DomainPrefix


    return ret.toString();
  }
 
  private String getDomainPrefix(Class<?> clazz) {
    String prefix = null;
    DomainPrefix annotatedDomainPrefix = clazz.getAnnotation(DomainPrefix.class);
    if (annotatedDomainPrefix != null) {
      prefix = annotatedDomainPrefix.value();
    } else {
      prefix = this.domainPrefix;
    }

    return prefix;
View Full Code Here

TOP

Related Classes of org.springframework.data.simpledb.annotation.DomainPrefix

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.