Package com.director.core.annotation

Examples of com.director.core.annotation.PollingProviderConfig


   @Override
   public void registerMethod(String actionName, String methodName, Class actionClass, Method method) {
      this.directAction = new DirectAction(this.getNamespace(), actionName, actionClass);
      this.directMethod = this.directAction.addMethod(methodName, method);
      if(method.isAnnotationPresent(PollingProviderConfig.class)) {
         PollingProviderConfig config = method.getAnnotation(PollingProviderConfig.class);
         this.interval = config.interval();
      }
   }
View Full Code Here

TOP

Related Classes of com.director.core.annotation.PollingProviderConfig

Copyright © 2018 www.massapicom. 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.