All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.atmosphere.jboss.websockets.frame.AbstractFrame Maven / Gradle / Ivy

package org.atmosphere.jboss.websockets.frame;

import org.atmosphere.jboss.websockets.Frame;
import org.atmosphere.jboss.websockets.FrameType;

/**
 * @author Mike Brock
 */
public class AbstractFrame implements Frame {
  private final FrameType type;

  protected AbstractFrame(final FrameType type) {
    this.type = type;
  }

  public FrameType getType() {
    return type;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy