add warning to frame builder

This commit is contained in:
Jesse McConnell 2012-07-06 16:33:14 -05:00
parent f21f0433e0
commit 44f0253bdb
1 changed files with 6 additions and 0 deletions

View File

@ -7,6 +7,12 @@ import org.eclipse.jetty.util.StringUtil;
import org.eclipse.jetty.websocket.api.PolicyViolationException;
/**
* The FrameBuilder applies a builder pattern to constructing WebSocketFrame classes.
*
* WARNING: It is possible to build bad frames using this builder which is the intent
*
*/
public class FrameBuilder
{
public static FrameBuilder binary()