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

com.mybatis.jpa.definition.property.UpdateDefinitionProperty 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.UpdateDefinition;

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

  private UpdateDefinition annotation;

  public UpdateDefinitionProperty(UpdateDefinition annotation) {
    this.annotation = annotation;
  }

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

  @Override
  public String where() {
    return annotation.where();
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy