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

com.mybatis.jpa.definition.property.InsertDefinitionProperty Maven / Gradle / Ivy

There is a newer version: 2.5.1
Show newest version
package com.mybatis.jpa.definition.property;

import com.mybatis.jpa.annotation.InsertDefinition;

/**
 * @author sway.li
 **/
public class InsertDefinitionProperty implements AnnotationProperty {

  private InsertDefinition annotation;

  public InsertDefinitionProperty(InsertDefinition annotation) {
    this.annotation = annotation;
  }

  @Override
  public boolean selective() {
    return annotation.selective();
  }

  @Override
  public String where() {
    return null;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy