if (serviceType == null) {
throw new NullPointerException("serviceType");
}
V1ServiceInterface v1annotation =
serviceType.getAnnotation(V1ServiceInterface.class);
if (v1annotation != null) {
return new ServiceBuilder<>(
new V1ServiceFactory<>(serviceType, v1annotation));