Package com.microstrategy.web.objects
Interface WebChannel
- 
public interface WebChannelThe WebChannel interface represents a communciation channel defined in aWebServerDefobject. This interface allows the user to view and modify the settings of a channel. WebChannel objects can only be obtained from aWebChannelscollection.- Since:
 - MicroStrategy Web 7.5.2
 
 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetMaximumConnections()Returns the maximum connections set on this channel.java.lang.StringgetName()Returns the name of the channel.intgetType()Returns the type of the channel.This is a value fromEnumDSSXMLChannelTypevoidsetMaximumConnections(int maxConnections)This method can be used to change the maximum number of connections set on the channel. 
 - 
 
- 
- 
Method Detail
- 
getName
java.lang.String getName()
Returns the name of the channel.- Returns:
 - The name of the channel.
 
 
- 
getType
int getType()
Returns the type of the channel.This is a value fromEnumDSSXMLChannelType- Returns:
 - The type of the channel.
 
 
- 
getMaximumConnections
int getMaximumConnections()
Returns the maximum connections set on this channel.- Returns:
 - The current setting for maximum connections on the channel.
 
 
- 
setMaximumConnections
void setMaximumConnections(int maxConnections)
This method can be used to change the maximum number of connections set on the channel.- Parameters:
 maxConnections- The new value for the maximum number of connections.
 
 - 
 
 -