blob: bdb4a4e81992a99ba5e10173cd8c323ce1318cef [file] [log] [blame]
//
// ========================================================================
// Copyright (c) 1995-2017 Mort Bay Consulting Pty. Ltd.
// ------------------------------------------------------------------------
// All rights reserved. This program and the accompanying materials
// are made available under the terms of the Eclipse Public License v1.0
// and Apache License v2.0 which accompanies this distribution.
//
// The Eclipse Public License is available at
// http://www.eclipse.org/legal/epl-v10.html
//
// The Apache License v2.0 is available at
// http://www.opensource.org/licenses/apache2.0.php
//
// You may elect to redistribute this code under either of these licenses.
// ========================================================================
//
package org.eclipse.jetty.websocket.jsr356;
import static org.hamcrest.Matchers.notNullValue;
import java.io.IOException;
import javax.websocket.CloseReason;
import javax.websocket.Endpoint;
import javax.websocket.EndpointConfig;
import javax.websocket.Session;
import org.eclipse.jetty.util.log.Log;
import org.eclipse.jetty.util.log.Logger;
import org.junit.Assert;
/**
* Basic Echo Client from extended Endpoint
*/
public class EndpointEchoClient extends Endpoint
{
private static final Logger LOG = Log.getLogger(EndpointEchoClient.class);
private Session session = null;
private CloseReason close = null;
public EchoCaptureHandler textCapture = new EchoCaptureHandler();
public CloseReason getClose()
{
return close;
}
@Override
public void onOpen(Session session, EndpointConfig config)
{
if (LOG.isDebugEnabled())
LOG.debug("onOpen({}, {})",session,config);
this.session = session;
Assert.assertThat("Session is required",session,notNullValue());
Assert.assertThat("EndpointConfig is required",config,notNullValue());
this.session.addMessageHandler(textCapture);
}
public void sendText(String text) throws IOException
{
if (session != null)
{
session.getBasicRemote().sendText(text);
}
}
}