edu.sdsc.inca.agent
Class AccessMethodOutput

java.lang.Object
  extended by edu.sdsc.inca.agent.AccessMethodOutput

public class AccessMethodOutput
extends java.lang.Object

Small class which encapsulates stderr and stdout (since we can only return one value from a function).

Author:
Shava Smallen <ssmallen@sdsc.edu&rt;

Constructor Summary
AccessMethodOutput()
           
 
Method Summary
 java.lang.String getStderr()
          Return the value of stderr.
 java.lang.String getStdout()
          Return the value of stdout.
 void setStderr(java.lang.String stderr)
          Set the value of stderr.
 void setStdout(java.lang.String stdout)
          Set the value of stdout.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

AccessMethodOutput

public AccessMethodOutput()
Method Detail

getStderr

public java.lang.String getStderr()
Return the value of stderr.

Returns:
A string containing the content of stderr.

getStdout

public java.lang.String getStdout()
Return the value of stdout.

Returns:
A string containing the content of stdout.

setStderr

public void setStderr(java.lang.String stderr)
Set the value of stderr.

Parameters:
stderr - A string containing the content of stderr.

setStdout

public void setStdout(java.lang.String stdout)
Set the value of stdout.

Parameters:
stdout - A string containing the content of stdout.