org.apache.hcatalog.templeton
Class ExecBean

Object
  extended by ExecBean

public class ExecBean
extends Object

ExecBean - The results of an exec call.


Field Summary
 int exitcode
           
 String stderr
           
 String stdout
           
 
Constructor Summary
ExecBean()
           
ExecBean(String stdout, String stderr, int exitcode)
          Create a new ExecBean.
 
Method Summary
 String toString()
           
 
Methods inherited from class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

stdout

public String stdout

stderr

public String stderr

exitcode

public int exitcode
Constructor Detail

ExecBean

public ExecBean()

ExecBean

public ExecBean(String stdout,
                String stderr,
                int exitcode)
Create a new ExecBean.

Parameters:
stdout - standard output of the the program.
stderr - error output of the the program.
exitcode - exit code of the program.
Method Detail

toString

public String toString()
Overrides:
toString in class Object