Business Service Methods for Siebel Java Data Bean

The following table describes a summary of business service methods you can use with Siebel Java Data Bean.

Method Description Format

Business Service Methods

Returns the name of the first property of a business service.

String getFirstProperty()

GetNextProperty Method for a Business Service

Returns the name of the next property of a business service.

String getNextProperty()

GetProperty Method for a Business Service

Returns the value of a property.

String getProperty(String propName) throws SiebelException

InvokeMethod Method for a Business Service

Calls a method.

boolean invokeMethod(String methodName, SiebelPropertySet inputPropertySet, SiebelPropertySet outputPropertySet) throws SiebelException

Name Method for a Business Service

Returns the name of a business service.

String Name()

PropertyExists Method for a Business Service

Returns a Boolean value that indicates if the property that the argument identifies exists.

boolean propertyExists(String propName) throws SiebelException

Release Method for a Business Service

Releases a business service and the resources that this business service uses on the Siebel Server.

void release()

RemoveProperty Method for a Business Service

Removes a property from a business service.

void removeProperty(String propName) throws SiebelException

SetProperty Method for a Business Service

Sets a value for a property of a business service.

void setProperty(String propName, String propValue) throws SiebelException