Package com.aichamorro.dal.dataquery.annotations

Examples of com.aichamorro.dal.dataquery.annotations.ModelId


  }
 
  private static String getIdFieldNameFor(Queryable<?> object) {
    for( Field f : object.getClass().getDeclaredFields() ) {
      if( f.isAnnotationPresent(ModelId.class) ) {
        ModelId annotation = (ModelId)f.getAnnotation(ModelId.class);
       
        return "".equals(annotation.value()) ? f.getName() : annotation.value();
      }
    }

    return "id";
  }
View Full Code Here

TOP

Related Classes of com.aichamorro.dal.dataquery.annotations.ModelId

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.