Package org.springframework.extensions.webscripts.Description

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


    Assert.notNull(transaction, "Annotation cannot be null.");
    Assert.hasText(beanName, "Bean name cannot be empty.");
    Assert.notNull(description, "Description cannot be null.");

    final TransactionParameters transactionParameters = new TransactionParameters();
    final RequiredTransaction requiredTransaction;
    switch (transaction.value()) {
    case NONE:
      requiredTransaction = RequiredTransaction.none;
      break;
    default:
View Full Code Here

TOP

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

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.