Package com.github.dynamicextensionsalfresco.webscripts.annotations

Examples of com.github.dynamicextensionsalfresco.webscripts.annotations.Authentication


  protected void handleTypeAnnotations(final String beanName, final WebScript webScript,
      final DescriptionImpl description) {
    final ConfigurableListableBeanFactory beanFactory = getBeanFactory();
    handleWebScriptAnnotation(webScript, beanName, description);
    Authentication authentication = beanFactory.findAnnotationOnBean(beanName, Authentication.class);
    if (authentication == null) {
      authentication = getDefaultAuthenticationAnnotation();
    }
    handleAuthenticationAnnotation(authentication, beanName, description);
    Transaction transaction = beanFactory.findAnnotationOnBean(beanName, Transaction.class);
View Full Code Here

TOP

Related Classes of com.github.dynamicextensionsalfresco.webscripts.annotations.Authentication

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.