Style Intelligence v12.0

inetsoft.sree.soap
Class RepletRequestStruct

java.lang.Object
  extended by inetsoft.sree.soap.RepletRequestStruct
All Implemented Interfaces:
Serializable

public class RepletRequestStruct
extends Object
implements Serializable

Complex types need to be serialized and deserialized in order for it to be available for use in SOAP calls. RepletRequestStruct is the type used to represent an RepletRequest in SOAP.

See Also:
Serialized Form

Constructor Summary
RepletRequestStruct()
          Default constructor.
 
Method Summary
 String getName()
          Get the name of this request.
 String[] getParamNames()
          Get a list of parameter names in this request.
 String getParamNames(int i)
          Get the ith parameter name in this request.
 ParameterValue[] getParamValues()
          Get the list of parameter values in this request.
 ParameterValue getParamValues(int i)
          Get the ith parameter values.
 void setName(String name)
          Set the name of this request.
 void setParamNames(int i, String name)
          Set the ith parameter name in this request.
 void setParamNames(String[] paramNames)
          Set the list of parameter names in this request.
 void setParamValues(int i, ParameterValue value)
          Set the ith parameter value.
 void setParamValues(ParameterValue[] paramValues)
          Set the list of parameter values for this request.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

RepletRequestStruct

public RepletRequestStruct()
Default constructor.

Method Detail

getName

public String getName()
Get the name of this request.

Returns:
the request name.

setName

public void setName(String name)
Set the name of this request.

Parameters:
name - the name to set this request name to.

getParamNames

public String[] getParamNames()
Get a list of parameter names in this request.

Returns:
array of Strings representing the parameter names

setParamNames

public void setParamNames(String[] paramNames)
Set the list of parameter names in this request.

Parameters:
paramNames - array of Strings representing the parameter names.

getParamNames

public String getParamNames(int i)
Get the ith parameter name in this request.

Returns:
the ith parameter name.

setParamNames

public void setParamNames(int i,
                          String name)
Set the ith parameter name in this request.

Parameters:
i - the index of the parameter name to set.
name - the ith parameter name.

getParamValues

public ParameterValue[] getParamValues()
Get the list of parameter values in this request.

Returns:
array of Strings representing the parameter values.

setParamValues

public void setParamValues(ParameterValue[] paramValues)
Set the list of parameter values for this request.

Parameters:
paramValues - array of Strings representing the parameter values to use.

getParamValues

public ParameterValue getParamValues(int i)
Get the ith parameter values.

Returns:
the ith parameter value.

setParamValues

public void setParamValues(int i,
                           ParameterValue value)
Set the ith parameter value.

Parameters:
i - the index of the value to set.
value - the ith parameter value.

Copyright © 1996-2014 InetSoft Technology Corp. All Rights Reserved.