Package org.araneaframework.core

Examples of org.araneaframework.core.NoCurrentInputDataSetException


  }

  public InputData getCurrentInputData() {
    InputData inputData = (InputData)req.getAttribute(StandardServletServiceAdapterComponent.INPUT_DATA_REQUEST_ATTRIBUTE);
    if (inputData == null)
      throw new NoCurrentInputDataSetException("No InputData set in the request.");
    else
      return inputData;
  }
View Full Code Here

TOP

Related Classes of org.araneaframework.core.NoCurrentInputDataSetException

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.