}
}
public void deleteType(TypeDataVo vo) {
Class<AbstractLookupType> clazz = getClass(vo);
AbstractLookupType type = TypeUtil.forKey(clazz, vo.getKey());
// Only non-significant types can be deleted
if(type instanceof Significant){
throw new IllegalStateException("Significant Type data cannot be deleted through this admin module.");
}