All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.rojo.repository.DefaultGenerator Maven / Gradle / Ivy

Go to download

rojo is a orm lib for redis . this release is a enhancement fork from https://github.com/giulio/rojo .

There is a newer version: 1.1.4
Show newest version
/**
 * default generator
 */
package org.rojo.repository;

import redis.clients.jedis.Jedis;

/**
 *
 * @author beykery
 */
public class DefaultGenerator extends IdGenerator
{

  public DefaultGenerator()
  {
  }

  @Override
  public String id(Class claz, String table, Jedis je)
  {
    return je.incr(table + ":::id").toString();
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy