Package com.alvazan.orm.impl.meta.data

Examples of com.alvazan.orm.impl.meta.data.MetaTTLField


  }
 
  public MetaTTLField processTTL(DboTableMeta t, Field field) {
    Class type = field.getType();
    if (Integer.class.equals(type) ) {
      MetaTTLField rc = ttlMetaProvider.get();
      rc.setup(t, field, field.getName(), field.isAnnotationPresent(NoSqlIndexed.class));
      return rc;
    }
    else if(int.class.equals(type)){
      MetaTTLField rc = ttlMetaProvider.get();
      rc.setup(t, field, field.getName(), field.isAnnotationPresent(NoSqlIndexed.class));
      return rc;
    }
    else
      throw new IllegalArgumentException("TTL field must be int or Integer");
  }
View Full Code Here

TOP

Related Classes of com.alvazan.orm.impl.meta.data.MetaTTLField

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.