![JAR search and dependency download from the Maven repository](/logo.png)
com.mybatis.jpa.definition.property.UpdateDefinitionProperty Maven / Gradle / Ivy
package com.mybatis.jpa.definition.property;
import com.mybatis.jpa.annotation.UpdateDefinition;
/**
* @author svili
**/
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 - 2025 Weber Informatics LLC | Privacy Policy