Package org.jboss.jca.web.console
Class OpResultInfo
- java.lang.Object
-
- org.jboss.jca.web.console.OpResultInfo
-
public class OpResultInfo extends Object
A simple tuple of a MBean operation name, index, signature, args and operation result.- Author:
- Scott Stark, Jesper Pedersen
-
-
Constructor Summary
Constructors Constructor Description OpResultInfo()ConstructorOpResultInfo(String name, String[] signature, String[] args, Object result)Constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String[]getArguments()Get the argumentsStringgetName()Get the nameObjectgetResult()Get the resultString[]getSignature()Get the signature
-
-
-
Method Detail
-
getName
public String getName()
Get the name- Returns:
- The value
-
getSignature
public String[] getSignature()
Get the signature- Returns:
- The value
-
getArguments
public String[] getArguments()
Get the arguments- Returns:
- The value
-
getResult
public Object getResult()
Get the result- Returns:
- The value
-
-