com.pusher.java_websocket.handshake.HandshakeImpl1Client Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-websocket Show documentation
Show all versions of java-websocket Show documentation
The Pusher fork of TooTallNate/Java-Websocket
The newest version!
package com.pusher.java_websocket.handshake;
public class HandshakeImpl1Client extends HandshakedataImpl1 implements ClientHandshakeBuilder {
private String resourceDescriptor = "*";
public HandshakeImpl1Client() {
}
public void setResourceDescriptor( String resourceDescriptor ) throws IllegalArgumentException {
if(resourceDescriptor==null)
throw new IllegalArgumentException( "http resource descriptor must not be null" );
this.resourceDescriptor = resourceDescriptor;
}
public String getResourceDescriptor() {
return resourceDescriptor;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy