Package com.microstrategy.web.objects
Interface WebChannel
-
public interface WebChannel
The WebChannel interface represents a communciation channel defined in aWebServerDef
object. This interface allows the user to view and modify the settings of a channel. WebChannel objects can only be obtained from aWebChannels
collection.- Since:
- MicroStrategy Web 7.5.2
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
getMaximumConnections()
Returns the maximum connections set on this channel.java.lang.String
getName()
Returns the name of the channel.int
getType()
Returns the type of the channel.This is a value fromEnumDSSXMLChannelType
void
setMaximumConnections(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.
-
-