io.ebeaninternal.api.SpiExpressionValidation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ebean Show documentation
Show all versions of ebean Show documentation
composite of common runtime dependencies for all platforms
package io.ebeaninternal.api;
import io.ebean.plugin.BeanType;
import java.util.LinkedHashSet;
import java.util.Set;
/**
* Property expression validation request for a given root bean type.
*/
public class SpiExpressionValidation {
private final BeanType> desc;
private final LinkedHashSet unknown = new LinkedHashSet<>();
public SpiExpressionValidation(BeanType> desc) {
this.desc = desc;
}
/**
* Validate that the property expression (path) is valid.
*/
public void validate(String propertyName) {
if (!desc.isValidExpression(propertyName)) {
unknown.add(propertyName);
}
}
/**
* Return the set of properties considered as having unknown paths.
*/
public Set getUnknownProperties() {
return unknown;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy