@Override
protected ServiceInfo getInfo(String n, String cla, String m) throws Exception
{
if (dataTest && "test".equals(cla))
return new ServiceInfo(codec, n, ModelsCreate.CREATE);
ServiceInfo inf = super.getInfo(n, Class2.packageName(Do.class) + '.' + cla, m);
return inf != null && inf.meth.isAnnotationPresent(Do.Service.class) ? inf : null;
}