Package org.springframework.extensions.webscripts.Description

Examples of org.springframework.extensions.webscripts.Description.RequiredAuthentication


    Assert.hasText(beanName, "Bean name cannot be empty.");
    Assert.notNull(description, "Description cannot be null.");
    if (StringUtils.hasText(authentication.runAs())) {
      description.setRunAs(authentication.runAs());
    }
    final RequiredAuthentication requiredAuthentication;
    switch (authentication.value()) {
    case NONE:
      requiredAuthentication = RequiredAuthentication.none;
      break;
    case GUEST:
View Full Code Here

TOP

Related Classes of org.springframework.extensions.webscripts.Description.RequiredAuthentication

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.