Examples of providerType()


Examples of com.director.core.annotation.DirectMethod.providerType()

                               String directMethodName,
                               Class actionClass,
                               Method method) throws Exception {

      DirectMethod directMethod = method.getAnnotation(DirectMethod.class);
      ProviderType type = directMethod.providerType();
      String providerId = type.getProviderId(directNameSpace);
      Provider provider = this.getProvider(directNameSpace, type, providerId);

      String aName = (directActionName == null) ? actionClass.getSimpleName() : directActionName;
      String mName = (directMethodName == null) ? method.getName() : directMethodName;
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.