Package com.dooapp.gaedo.blueprints

Source Code of com.dooapp.gaedo.blueprints.BluePrintsBackedFinderService

package com.dooapp.gaedo.blueprints;

import java.util.Arrays;
import java.util.Collection;
import java.util.HashMap;
import java.util.LinkedList;
import java.util.Map;
import java.util.TreeMap;
import java.util.logging.Level;
import java.util.logging.Logger;

import javax.persistence.CascadeType;
import javax.persistence.GeneratedValue;
import javax.persistence.ManyToMany;
import javax.persistence.ManyToOne;
import javax.persistence.OneToMany;
import javax.persistence.OneToOne;

import com.dooapp.gaedo.blueprints.transformers.Literals;
import com.dooapp.gaedo.blueprints.transformers.Tuples;
import com.dooapp.gaedo.extensions.id.IdGenerator;
import com.dooapp.gaedo.extensions.id.IntegerGenerator;
import com.dooapp.gaedo.extensions.id.LongGenerator;
import com.dooapp.gaedo.extensions.id.StringGenerator;
import com.dooapp.gaedo.extensions.migrable.Migrator;
import com.dooapp.gaedo.extensions.migrable.VersionMigratorFactory;
import com.dooapp.gaedo.finders.FinderCrudService;
import com.dooapp.gaedo.finders.Informer;
import com.dooapp.gaedo.finders.QueryBuilder;
import com.dooapp.gaedo.finders.QueryExpression;
import com.dooapp.gaedo.finders.QueryStatement;
import com.dooapp.gaedo.finders.expressions.Expressions;
import com.dooapp.gaedo.finders.id.AnnotationUtils;
import com.dooapp.gaedo.finders.id.IdBasedService;
import com.dooapp.gaedo.finders.repository.ServiceRepository;
import com.dooapp.gaedo.finders.root.AbstractFinderService;
import com.dooapp.gaedo.finders.root.InformerFactory;
import com.dooapp.gaedo.properties.ClassCollectionProperty;
import com.dooapp.gaedo.properties.Property;
import com.dooapp.gaedo.properties.PropertyProvider;
import com.dooapp.gaedo.properties.PropertyProviderUtils;
import com.dooapp.gaedo.utils.Utils;
import com.tinkerpop.blueprints.pgm.Edge;
import com.tinkerpop.blueprints.pgm.IndexableGraph;
import com.tinkerpop.blueprints.pgm.Vertex;

/**
* Standard blueprints backed implementation of FinderService
*
* Notice we maintain {@link AbstractCooperantFinderService} infos about objects being accessed as String containing, in fact, vertex ids
* @author ndx
*
*/
public class BluePrintsBackedFinderService <DataType, InformerType extends Informer<DataType>>
  extends AbstractFinderService<DataType, InformerType>
  implements FinderCrudService<DataType, InformerType>, IdBasedService<DataType>{
 
  private static final Logger logger = Logger.getLogger(BluePrintsBackedFinderService.class.getName());
 
  /**
   * Graph used as database
   */
  private final IndexableGraph database;
  /**
   * Property used to store id
   */
  private Property idProperty;

  /**
   * Accelerator cache linking classes objects to the collection of properties and cascade informations associated to
   * persist those fields.
   */
  protected Map<Class<?>, Map<Property, Collection<CascadeType>>> classes = new HashMap<Class<?>, Map<Property, Collection<CascadeType>>>();

  /**
   * Property provider indicating what, and how, saving infos from object
   */
  protected PropertyProvider propertyProvider;

  /**
   * Migrator for given contained class
   */
  protected Migrator migrator;

  /**
   * Get access to the service repository to handle links between objects
   */
  protected final ServiceRepository repository;

  /**
   * Adaptation layer
   */
  private BluePrintsPersister persister;

  private boolean requiresIdGeneration;
 
  public BluePrintsBackedFinderService(Class<DataType> containedClass, Class<InformerType> informerClass, InformerFactory factory, ServiceRepository repository,
          PropertyProvider provider, IndexableGraph graph) {
    super(containedClass, informerClass, factory);
    this.repository = repository;
    this.propertyProvider = provider;
    this.database = graph;
    this.idProperty = AnnotationUtils.locateIdField(provider, containedClass, Long.TYPE, Long.class, String.class);
    this.requiresIdGeneration = idProperty.getAnnotation(GeneratedValue.class)!=null;
    this.migrator = VersionMigratorFactory.create(containedClass);
    // Updater builds managed nodes here
    this.persister = new BluePrintsPersister(Kind.managed);
    // if there is a migrator, generate property from it
    if (logger.isLoggable(Level.FINE)) {
      logger.log(Level.FINE, "created graph service handling "+containedClass.getCanonicalName()+"\n" +
          "using as id "+idProperty+"\n" +
          "supporting migration ? "+(migrator!=null)+"\n");
    }
  }
 
  /**
   * Get map linking properties to their respective cascading informations
   * @param provider used provider
   * @param searchedClass searched class
   * @return a map linking each property to all its cascading informations
   */
  public Map<Property, Collection<CascadeType>> getPropertiesFor(PropertyProvider provider, Class<?> searchedClass) {
    Map<Property, Collection<CascadeType>> returned = new HashMap<Property, Collection<CascadeType>>();
    Property[] properties = PropertyProviderUtils.getAllProperties(provider, searchedClass);
    for(Property p : properties) {
      if(p.getAnnotation(OneToOne.class)!=null) {
        returned.put(p, GraphUtils.extractCascadeOf(p.getAnnotation(OneToOne.class).cascade()));
      } else if(p.getAnnotation(OneToMany.class)!=null) {
        returned.put(p, GraphUtils.extractCascadeOf(p.getAnnotation(OneToMany.class).cascade()));
      } else if(p.getAnnotation(ManyToMany.class)!=null) {
        returned.put(p, GraphUtils.extractCascadeOf(p.getAnnotation(ManyToMany.class).cascade()));
      } else if(p.getAnnotation(ManyToOne.class)!=null) {
        returned.put(p, GraphUtils.extractCascadeOf(p.getAnnotation(ManyToOne.class).cascade()));
      } else {
        returned.put(p, new LinkedList<CascadeType>());
      }
    }
    // And, if class is the contained one, add the (potential) Migrator property
    if(this.migrator!=null) {
      // Migrator has no cascade to be done on
      returned.put(migrator.getMigratorProperty(returned.keySet()), new LinkedList<CascadeType>());
    }
    // Finally, create a fake "classesCollection" property and add it to property
    try {
      returned.put(new ClassCollectionProperty(containedClass), new LinkedList<CascadeType>());
    } catch (Exception e) {
      logger.log(Level.SEVERE, "what ? a class without a \"class\" field ? WTF", e);
    }
    return returned;
  }

  /**
   * To put object in graph, we have to find all its fields, then put them in graph elements.
   * Notice this method directly calls {@link #doUpdate(Object, CascadeType, Map)}, just checking before that if an id must be generated.
   * If an id must be generated, then it is (and so is associated vertex, to make sure no problem will arise later).
   * @param toCreate
   * @return
   * @see com.dooapp.gaedo.AbstractCrudService#create(java.lang.Object)
   */
  @Override
  public DataType create(DataType toCreate) {
    return doUpdate(toCreate, CascadeType.PERSIST, new TreeMap<String, Object>());
  }

  private void generateIdFor(DataType toCreate) {
    IdGenerator generator = null;
    Class<?> objectType = Utils.maybeObjectify(idProperty.getType());
    if(Long.class.isAssignableFrom(objectType)) {
      generator = new LongGenerator(this, idProperty);
    } else if(Integer.class.isAssignableFrom(objectType)) {
      generator = new IntegerGenerator(this, idProperty);
    } else if(String.class.isAssignableFrom(objectType)) {
      generator = new StringGenerator(this, idProperty);
    } else {
      throw new UnsupportedIdTypeException(objectType+" can't be used as id : we don't know how to generate its values !");
    }
    generator.generateIdFor(toCreate);
  }

  /**
   * Delete id and all edges
   * @param toDelete
   * @see com.dooapp.gaedo.AbstractCrudService#delete(java.lang.Object)
   */
  @Override
  public void delete(DataType toDelete) {
    if(toDelete!=null) {
      doDelete(toDelete, new TreeMap<String, Object>());
    }
  }

  /**
   * Local delete implementation
   * @param toDelete
   */
  private void doDelete(DataType toDelete, Map<String, Object> objectsBeingAccessed) {
    String vertexId = getIdVertexId(toDelete, idProperty, false /* no id generation on delete */);
    Vertex objectVertex = GraphUtils.locateVertex(database, Properties.vertexId.name(), vertexId);
    if(objectVertex!=null) {
      Map<Property, Collection<CascadeType>> containedProperties = getContainedProperties(toDelete);
      for(Property p : containedProperties.keySet()) {
        Class<?> rawPropertyType = p.getType();
        Collection<CascadeType> toCascade = containedProperties.get(p);
        if(Collection.class.isAssignableFrom(rawPropertyType)) {
          if (logger.isLoggable(Level.FINEST)) {
            logger.log(Level.FINEST, "property "+p.getName()+" is considered a collection one");
          }
          deleteCollection(p, toDelete, objectVertex, toCascade, objectsBeingAccessed);
          // each value should be written as an independant value
        } else if(Map.class.isAssignableFrom(rawPropertyType)) {
          if (logger.isLoggable(Level.FINEST)) {
            logger.log(Level.FINEST, "property "+p.getName()+" is considered a map one");
          }
          deleteMap(p, toDelete, objectVertex, toCascade, objectsBeingAccessed);
        } else {
          deleteSingle(p, toDelete, objectVertex, toCascade, objectsBeingAccessed);
        }
      }
      // What to do with incoming edges ?
      database.removeVertex(objectVertex);
    }
  }

  private void deleteSingle(Property p, DataType toDelete, Vertex objectVertex, Collection<CascadeType> toCascade, Map<String, Object> objectsBeingAccessed) {
    // there should be only one vertex to delete
    String edgeNameFor = GraphUtils.getEdgeNameFor(p);
    Iterable<Edge> edges = objectVertex.getOutEdges(edgeNameFor);
    if (logger.isLoggable(Level.FINEST)) {
      logger.log(Level.FINEST, "deleting edge "+edgeNameFor+" of "+objectVertex.getProperty(Properties.vertexId.name()));
    }
    for(Edge e : edges) {
      Vertex valueVertex = e.getInVertex();
      database.removeEdge(e);
      // Now what to do with vertex ? Delete it ?
      if(toCascade.contains(CascadeType.REMOVE)) {
        // yes, delete it forever (but before, see if there aren't more datas to delete
        deleteOutEdgeVertex(objectVertex, valueVertex, p.get(toDelete), objectsBeingAccessed);
       
      }
    }
  }

  private void deleteMap(Property p, DataType toDelete, Vertex objectVertex, Collection<CascadeType> toCascade, Map<String, Object> objectsBeingAccessed) {
    String edgeNameFor = GraphUtils.getEdgeNameFor(p);
    Iterable<Edge> edges = objectVertex.getOutEdges(edgeNameFor);
    Map values = (Map) p.get(toDelete);
    Map<Vertex, Edge> oldVertices = new HashMap<Vertex, Edge>();
    for(Edge e : edges) {
      Vertex inVertex = e.getInVertex();
      oldVertices.put(inVertex, e);
    }
    for(Object v : values.entrySet()) {
      Vertex valueVertex = getVertexFor(v, CascadeType.REFRESH, objectsBeingAccessed);
      if(oldVertices.containsKey(valueVertex)) {
        Edge oldEdge = oldVertices.remove(valueVertex);
        database.removeEdge(oldEdge);
        if(toCascade.contains(CascadeType.REMOVE)) {
          deleteOutEdgeVertex(objectVertex, valueVertex, v, objectsBeingAccessed);
        }
      }
    }
    if(oldVertices.size()>0) {
      // force deletion of remaining edges
      // BUT assocaited vertices may not be deleted
      for(Edge e : oldVertices.values()) {
        database.removeEdge(e);
      }
    }
  }

  private void deleteCollection(Property p, DataType toDelete, Vertex objectVertex, Collection<CascadeType> toCascade, Map<String, Object> objectsBeingAccessed) {
    String edgeNameFor = GraphUtils.getEdgeNameFor(p);
    Iterable<Edge> edges = objectVertex.getOutEdges(edgeNameFor);
    Collection values = (Collection) p.get(toDelete);
    Map<Vertex, Edge> oldVertices = new HashMap<Vertex, Edge>();
    for(Edge e : edges) {
      Vertex inVertex = e.getInVertex();
      oldVertices.put(inVertex, e);
    }
    for(Object v : values) {
      Vertex valueVertex = getVertexFor(v, CascadeType.REFRESH, objectsBeingAccessed);
      if(oldVertices.containsKey(valueVertex)) {
        Edge oldEdge = oldVertices.remove(valueVertex);
        database.removeEdge(oldEdge);
        if(toCascade.contains(CascadeType.REMOVE)) {
          deleteOutEdgeVertex(objectVertex, valueVertex, v, objectsBeingAccessed);
        }
      }
    }
    if(oldVertices.size()>0) {
      // force deletion of remaining edges
      // BUT assocaited vertices may not be deleted
      for(Edge e : oldVertices.values()) {
        database.removeEdge(e);
      }
    }
  }
 
  /**
   * Delete an out edge vertex. Those are vertex corresponding to properties.
   * @param objectVertex source object vertex, used for debugging purpose only
   * @param valueVertex value vertex to remove
   * @param value object value
   */
  private <Type> void deleteOutEdgeVertex(Vertex objectVertex, Vertex valueVertex, Type value, Map<String, Object> objectsBeingUpdated) {
    // Locate vertex
    Vertex knownValueVertex = getVertexFor(value, CascadeType.REFRESH, objectsBeingUpdated);
    // Ensure vertex is our out one
    if(valueVertex.equals(knownValueVertex)) {
      // Delete vertex and other associated ones, only if they have no other input links (elsewhere delete is silently ignored)
      if(valueVertex.getInEdges().iterator().hasNext()) {
        // There are incoming edges to that vertex. Do nothing but log it
        if (logger.isLoggable(Level.FINE)) {
          logger.log(Level.FINE, "while deleting "+objectVertex.getProperty(Properties.vertexId.name())+"" +
              " we tried to delete "+knownValueVertex.getProperty(Properties.vertexId.name())+"" +
                  " which has other incoming edges, so we didn't deleted it");
        }
      } else {
        // OK, time to delete value vertex. Is it a managed node ?
        if(repository.containsKey(value.getClass())) {
          FinderCrudService<Type, ?> finderCrudService = (FinderCrudService<Type, ?>) repository.get(value.getClass());
          finderCrudService.delete(value);
        } else {
          // Literal nodes can be deleted without any trouble
          database.removeVertex(valueVertex);
        }
      }
    } else {
      if (logger.isLoggable(Level.WARNING)) {
        logger.log(Level.WARNING, "that's strange : value "+value+" is associated to "+knownValueVertex.getProperty(Properties.vertexId.name())+"" +
            " which blueprints says is different from "+valueVertex.getProperty(Properties.vertexId.name())+"." +
                " Under those circumstances, we can delete neither of them");
      }
    }
  }

  public Map<Property, Collection<CascadeType>> getContainedProperties(DataType object) {
    Class<? extends Object> objectClass = object.getClass();
    return getContainedProperties(objectClass);
  }

  public Map<Property, Collection<CascadeType>> getContainedProperties(Class<? extends Object> objectClass) {
    if(!classes.containsKey(objectClass)) {
      classes.put(objectClass, getPropertiesFor(propertyProvider, objectClass));
    }
    return classes.get(objectClass);
  }

  /**
   * Gets the id vertex for the given object (if that object exists)
   * @param object
   * @return first matching node if found, and null if not
   */
  private Vertex getIdVertexFor(DataType object) {
    return GraphUtils.locateVertex(database, Properties.vertexId.name(), getIdVertexId(object, idProperty, false));
  }

  /**
   * Notice it only works if id is a literal type
   * @param object object for which we want the id vertex id property
   * @param idProperty property used to extract id from object
   * @param requiresIdGeneration set to true when effective id generation is required. Allow to generate id only on create operations
   * @return a composite id containing the service class, the data class and the the instance value
   * @see GraphUtils#getIdVertexId(IndexableGraph, Class, Object, Property)
   */
  private String getIdVertexId(DataType object, Property idProperty, boolean requiresIdGeneration) {
    if(requiresIdGeneration) {
      // Check value of idProperty
      Object value = idProperty.get(object);
      if(value==null) {
        generateIdFor(object);
      } else if(Number.class.isAssignableFrom(Utils.maybeObjectify(idProperty.getType()))) {
        Number n = (Number) value;
        if(n.equals(0) || n.equals(0l)) {
          generateIdFor(object);
        }
      }
    }
    return GraphUtils.getIdVertexId(database, containedClass, object, idProperty);
  }
 
  /**
   * Get id of given object, provided of course it's an instance of this class
   * @param data object to extract an id for
   * @return id of that object
   */
  public Object getIdOf(DataType data) {
    return getIdVertexId(data, idProperty, false);
  }

  @Override
  public DataType update(DataType toUpdate) {
    return doUpdate(toUpdate, CascadeType.MERGE, new TreeMap<String, Object>());
  }

  /**
   * here is a trick : we want id generation to happen only on first persist (that's to say on call to #create), but not on subsequent ones.
   * So, as first call uses CascadeType.PERSIST and others uses CascadeType.MERGE, we can use that indication to separate them.
   * It has the unfortunate inconvenient to force us to use only PERSIST during #create
   * @param toUpdate object to update
   * @param cascade type. As mentionned upper, beware to value used !
   * @param treeMap map of objects already used
   */
  private DataType doUpdate(DataType toUpdate, CascadeType cascade, Map<String, Object> treeMap) {
    boolean generatesId = requiresIdGeneration ? (CascadeType.PERSIST==cascade) : false;
    String objectVertexId = getIdVertexId(toUpdate, idProperty, generatesId);
    return (DataType) persister.performUpdate(this, objectVertexId, toUpdate.getClass(), getContainedProperties(toUpdate), toUpdate, cascade, treeMap);
  }

  /**
   * Get vertex associated to value. If object is managed by a service, we ask this service the value
   * @param value value we want the vertex for
   * @param cascade used cascade type, can be either {@link CascadeType#PERSIST} or {@link CascadeType#MERGE}
   * @param objectsBeingUpdated map of objects currently being updated, it avoid some loops during update, but is absolutely NOT a persistent cache
   * @return
   */
  public Vertex getVertexFor(Object value, CascadeType cascade, Map<String, Object> objectsBeingUpdated) {
    // Here we suppose the service is the right one for the job (which may not be the case)
    if(containedClass.isInstance(value)) {
      Vertex returned = getIdVertexFor(containedClass.cast(value));
      if(returned==null) {
        doUpdate(containedClass.cast(value), cascade, objectsBeingUpdated);
        returned = getIdVertexFor(containedClass.cast(value));
      } else {
        // vertex already exist, but maybe object needs an update
        if(CascadeType.PERSIST==cascade || CascadeType.MERGE==cascade) {
          doUpdate(containedClass.cast(value), cascade, objectsBeingUpdated);
        }
      }
      return returned;
    }
    Class<? extends Object> valueClass = value.getClass();
    if(repository.containsKey(valueClass)) {
      FinderCrudService service = repository.get(valueClass);
      if(service instanceof BluePrintsBackedFinderService) {
        return ((BluePrintsBackedFinderService) service).getVertexFor(value, cascade, objectsBeingUpdated);
      } else {
        throw new IncompatibleServiceException(service, valueClass);
      }
    } else if(Literals.containsKey(valueClass)){
      return GraphUtils.getVertexForLiteral(database, value);
    } else if(Tuples.containsKey(valueClass)){
      return GraphUtils.getVertexForTuple(this, repository, value, objectsBeingUpdated);
    } else {
/*      // OK, we will persist this object by ourselves, which is really error-prone, but we do we have any other solution ?
      // But notice object is by design consderie
      Vertex objectVertex =
      objectVertex.setProperty(Properties.vertexId.name(), getIdVertexId(toUpdate));
      objectVertex.setProperty(Properties.kind.name(), Kind.managed.name());
      objectVertex.setProperty(Properties.type.name(), toUpdate.getClass().getName());
*/
      throw new ObjectIsNotARealLiteralException(value, valueClass);
     
    }
  }

  /**
   * Object query is done by simply looking up all objects of that class using a standard query
   * @return an iterable over all objects of that class
   * @see com.dooapp.gaedo.finders.FinderCrudService#findAll()
   */
  @Override
  public Iterable<DataType> findAll() {
    return find().matching(new QueryBuilder<InformerType>() {

      /**
       * An empty and starts with an initial match of true, but degrades it for each failure.
       * So creating an empty and() is like creating a "true" statement, which in turn results into searching all objects of that class.
       * @param informer
       * @return an empty or matching all objects
       * @see com.dooapp.gaedo.finders.QueryBuilder#createMatchingExpression(com.dooapp.gaedo.finders.Informer)
       */
      @Override
      public QueryExpression createMatchingExpression(InformerType informer) {
        return Expressions.and();
      }
    }).getAll();
  }

  @Override
  protected QueryStatement<DataType, InformerType> createQueryStatement(QueryBuilder<InformerType> query) {
    return new BluePrintsGraphQueryStatement<DataType, InformerType>(query,
            this, database, repository);
  }

  /**
   * Load object starting with the given vertex root.
   * Notice object is added to the accessed set with a weak key, this way, it should be faster to load it and to maintain instance unicity
   * @param objectVertex
   *
   * @return loaded object
   * @param objectsBeingAccessed map of objects currently being accessed, it avoid some loops during loading, but is absolutely NOT a persistent cache
   * @see #loadObject(String, Vertex, Map)
   */
  public DataType loadObject(String objectVertexId, Map<String, Object> objectsBeingAccessed) {
    // If cast fails, well, that's some fuckin mess, no ?
    Vertex objectVertex = GraphUtils.locateVertex(database, Properties.vertexId, objectVertexId);
    return persister.loadObject(this, objectVertexId, objectVertex, objectsBeingAccessed);
  }

  /**
   * Load object from a vertex
   * @param objectVertex
   * @param objectsBeingAccessed map of objects currently being accessed, it avoid some loops during loading, but is absolutely NOT a persistent cache
   * @return loaded object
   * @see #loadObject(String, Vertex, Map)
   */
  public DataType loadObject(Vertex objectVertex, Map<String, Object> objectsBeingAccessed) {
    return persister.loadObject(this, objectVertex, objectsBeingAccessed);
  }


  /**
   * we only consider first id element
   * @param id collection of id
   * @return object which has as vertexId the given property
   * @see com.dooapp.gaedo.finders.id.IdBasedService#findById(java.lang.Object[])
   */
  @Override
  public DataType findById(Object... id) {
    // make sure entered type is a valid one
    if(Utils.maybeObjectify(idProperty.getType()).isAssignableFrom(Utils.maybeObjectify(id[0].getClass()))) {
      String vertexIdValue = GraphUtils.getIdOfLiteral(database, containedClass, idProperty, id[0]).toString();
      return loadObject(vertexIdValue, new TreeMap<String, Object>());
    } else {
      throw new UnsupportedIdException(id[0].getClass(), idProperty.getType());
    }
  }

  @Override
  public Collection<Property> getIdProperties() {
    return Arrays.asList(idProperty);
  }

  /**
   * Get object associated to given key. Notice this method uses internal
   * cache ({@link #objectsBeingAccessed}) before to resolve call on
   * datastore.
   *
   * @param key
   * @return
   */
  public DataType getObjectFromKey(String key) {
    return loadObject(key, new TreeMap<String, Object>());
  }

  /**
   * @return the database
   * @category getter
   * @category database
   */
  public IndexableGraph getDatabase() {
    return database;
  }

  /**
   * @return the repository
   * @category getter
   * @category repository
   */
  public ServiceRepository getRepository() {
    return repository;
  }

  /**
   * Set id of object, and try to assign that object a vertex.
   * @param value
   * @param id
   * @return
   * @see com.dooapp.gaedo.finders.id.IdBasedService#assignId(java.lang.Object, java.lang.Object[])
   */
  @Override
  public boolean assignId(DataType value, Object... id) {
    /* We first make sure object is an instance of containedClass.
     * This way, we can then use value class to create id vertex
     */
    if(containedClass.isInstance(value)) {
      idProperty.set(value, id[0]);
      if(getIdVertexFor(value)==null) {
        try {
          persister.createIdVertex(database, value.getClass(), getIdVertexId(value, idProperty, requiresIdGeneration));
          return true;
        } catch(Exception e) {
          return false;
        }
      } else {
        return false;
      }
    } else {
      return false;
    }
  }

  /**
   * @param requiresIdGeneration the requiresIdGeneration to set
   * @category setter
   * @category requiresIdGeneration
   */
  void setRequiresIdGeneration(boolean requiresIdGeneration) {
    this.requiresIdGeneration = requiresIdGeneration;
  }

  /**
   * @return the requiresIdGeneration
   * @category getter
   * @category requiresIdGeneration
   */
  public boolean isRequiresIdGeneration() {
    return requiresIdGeneration;
  }

}
TOP

Related Classes of com.dooapp.gaedo.blueprints.BluePrintsBackedFinderService

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.