FileDocCategorySizeDatePackage
ChannelSettings.javaAPI DocExample4577Tue May 29 16:57:14 BST 2007com.sun.xml.ws.transport.tcp.util

ChannelSettings

public final class ChannelSettings extends Object
author
Alexey Stashok

Fields Summary
private List
negotiatedMimeTypes
private List
negotiatedParams
private int
channelId
private QName
wsServiceName
private WSTCPURI
targetWSURI
Constructors Summary
public ChannelSettings()

    
public ChannelSettings(List negotiatedMimeTypes, List negotiatedParams, int channelId, QName wsServiceName, WSTCPURI targetWSURI)

        this.negotiatedMimeTypes = negotiatedMimeTypes;
        this.negotiatedParams = negotiatedParams;
        this.channelId = channelId;
        this.wsServiceName = wsServiceName;
        this.targetWSURI = targetWSURI;
    
Methods Summary
public intgetChannelId()

        return channelId;
    
public java.util.ListgetNegotiatedMimeTypes()

        return negotiatedMimeTypes;
    
public java.util.ListgetNegotiatedParams()

        return negotiatedParams;
    
public WSTCPURIgetTargetWSURI()

        return targetWSURI;
    
public javax.xml.namespace.QNamegetWSServiceName()

        return wsServiceName;
    
public voidsetChannelId(int channelId)

        this.channelId = channelId;
    
public voidsetNegotiatedMimeTypes(java.util.List negotiatedMimeTypes)

        this.negotiatedMimeTypes = negotiatedMimeTypes;
    
public voidsetNegotiatedParams(java.util.List negotiatedParams)

        this.negotiatedParams = negotiatedParams;
    
public voidsetTargetWSURI(WSTCPURI targetWSURI)

        this.targetWSURI = targetWSURI;
    
public voidsetWSServiceName(javax.xml.namespace.QName wsServiceName)

        this.wsServiceName = wsServiceName;
    
public java.lang.StringtoString()

        StringBuffer sb = new StringBuffer(200);
        sb.append("TargetURI: ");
        sb.append(targetWSURI);
        sb.append(" wsServiceName: ");
        sb.append(wsServiceName);
        sb.append(" channelId: ");
        sb.append(channelId);
        sb.append(" negotiatedParams: ");
        sb.append(negotiatedParams);
        sb.append(" negotiatedMimeTypes: ");
        sb.append(negotiatedMimeTypes);
                
        return sb.toString();