#574 - Refactor - rename .plugin objects; SpiBeanType -> BeanType and SpiServerPlugin -> Plugin

This commit is contained in:
Robin Bygrave
2016-02-29 09:19:44 +13:00
parent 6c49ac0857
commit 2353049c6f
12 changed files with 36 additions and 37 deletions
@@ -1,6 +1,6 @@
package com.avaje.ebeaninternal.api;
import com.avaje.ebean.plugin.SpiBeanType;
import com.avaje.ebean.plugin.BeanType;
import java.util.LinkedHashSet;
import java.util.Set;
@@ -10,11 +10,11 @@ import java.util.Set;
*/
public class SpiExpressionValidation {
private final SpiBeanType<?> desc;
private final BeanType<?> desc;
private final LinkedHashSet<String> unknown = new LinkedHashSet<String>();
public SpiExpressionValidation(SpiBeanType<?> desc) {
public SpiExpressionValidation(BeanType<?> desc) {
this.desc = desc;
}