Examples of BlockReader


Examples of uk.org.ogsadai.activity.io.BlockReader

      ActivityProcessingException,
      ActivityTerminatedException
{
  validateInput(this.INPUT);
  validateOutput(this.OUTPUT_DATA);
  BlockReader mInputBlockReader = getInput(this.INPUT);
  BlockReader mInputBlockReader2 = getInput(this.LOOKUP_FOLDER);
  mOutputBlockWriter = getOutput(this.OUTPUT_DATA);
  String lookupfolder="";
  String stacode;

  try{
 

       

    Object block;
    List stacodes= new ArrayList();
   
    while ((block = mInputBlockReader.read()) != ControlBlock.NO_MORE_DATA)

    {
      

      if (block instanceof String)

      { 
        stacodes.add(block);
      }

    

    }
   
    while ((block = mInputBlockReader2.read()) != ControlBlock.NO_MORE_DATA)
    {
      if (block instanceof String)
      { 
         lookupfolder = (String)requestResouce.getResourceID().getLocalPart()+"/"+block;
      }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.