congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
org.jboss.aerogear.simplepush.util
Code IndexAdd Tabnine to your IDE (free)

How to use org.jboss.aerogear.simplepush.util

Best Java code snippets using org.jboss.aerogear.simplepush.util (Showing top 20 results out of 315)

origin: org.jboss.aerogear/aerogear-simplepush-protocol

public UnregisterResponseImpl(final String channelId, final Status status) {
  super(channelId);
  checkNotNull(status, "status");
  this.status = status;
}
origin: aerogear/aerogear-simplepush-server

public DefaultChannel(final String uaid, final String channelId, final long version, final String endpointToken) {
  checkNotNull(uaid, "uaid");
  checkNotNull(channelId, "channelId");
  checkNotNegative(version, "version");
  checkNotNull(endpointToken, "endpointToken");
  this.uaid = uaid;
  this.channelId = channelId;
  this.version = version;
  this.endpointToken = endpointToken;
}
origin: org.jboss.aerogear/aerogear-simplepush-protocol

public NotificationMessageImpl(final Set<Ack> acks) {
  checkNotNullAndNotEmpty(acks, "acks");
  this.acks = acks;
}
origin: org.jboss.aerogear/aerogear-simplepush-protocol

public HelloMessageImpl(final String uaid, final Set<String> channelIds) {
  if (nullOrEmpty(uaid)) {
    this.uaid = newUAID();
    this.channelIds = Collections.emptySet();
  } else {
    this.channelIds = channelIds;
    this.uaid = fromString(uaid);
  }
}
origin: org.jboss.aerogear/aerogear-simplepush-server-core

private String generateEndpointToken(final String uaid, final String channelId) {
  return CryptoUtil.endpointToken(uaid, channelId, privateKey);
}
origin: aerogear/aerogear-simplepush-server

public UnregisterResponseImpl(final String channelId, final Status status) {
  super(channelId);
  checkNotNull(status, "status");
  this.status = status;
}
origin: org.jboss.aerogear/aerogear-simplepush-protocol

public PingMessageImpl(final String body) {
  ArgumentUtil.checkNotNullAndNotEmpty(body, "body");
  this.body = body;
}
origin: aerogear/aerogear-simplepush-server

private String generateEndpointToken(final String uaid, final String channelId) {
  return CryptoUtil.endpointToken(uaid, channelId, privateKey);
}
origin: org.jboss.aerogear/aerogear-simplepush-protocol

public AckImpl(final String channelId, final long version) {
  checkNotNull(channelId, "channelId");
  checkNotNull(version, "version");
  this.channelId = channelId;
  this.version = version;
}
origin: aerogear/aerogear-simplepush-server

public PingMessageImpl(final String body) {
  ArgumentUtil.checkNotNullAndNotEmpty(body, "body");
  this.body = body;
}
origin: org.jboss.aerogear/aerogear-simplepush-protocol

public RegisterResponseImpl(final String channelId, final Status status, final String pushEndpoint) {
  super(channelId);
  checkNotNull(status, "status");
  checkNotNull(pushEndpoint, "pushEndpoint");
  this.status = status;
  this.pushEndpoint = pushEndpoint;
}
origin: aerogear/aerogear-simplepush-server

public NotificationMessageImpl(final Set<Ack> acks) {
  checkNotNullAndNotEmpty(acks, "acks");
  this.acks = acks;
}
origin: org.jboss.aerogear/aerogear-simplepush-protocol

public HelloResponseImpl(final String uaid) {
  checkNotNull(uaid, "uaid");
  this.uaid = uaid;
}
origin: aerogear/aerogear-simplepush-server

public AckImpl(final String channelId, final long version) {
  checkNotNull(channelId, "channelId");
  checkNotNull(version, "version");
  this.channelId = channelId;
  this.version = version;
}
origin: aerogear/aerogear-simplepush-server

public RegisterResponseImpl(final String channelId, final Status status, final String pushEndpoint) {
  super(channelId);
  checkNotNull(status, "status");
  checkNotNull(pushEndpoint, "pushEndpoint");
  this.status = status;
  this.pushEndpoint = pushEndpoint;
}
origin: org.jboss.aerogear/aerogear-simplepush-protocol

public RegisterMessageImpl(final String channelId) {
  checkNotNull(channelId, "channelId");
  this.channelId = channelId;
}
origin: aerogear/aerogear-simplepush-server

public UnregisterMessageImpl(final String channelId) {
  checkNotNull(channelId, "channelId");
  this.channelId = channelId;
}
origin: org.jboss.aerogear/aerogear-simplepush-protocol

public UnregisterMessageImpl(final String channelId) {
  checkNotNull(channelId, "channelId");
  this.channelId = channelId;
}
origin: aerogear/aerogear-simplepush-server

public RegisterMessageImpl(final String channelId) {
  checkNotNull(channelId, "channelId");
  this.channelId = channelId;
}
origin: aerogear/aerogear-simplepush-server

public HelloResponseImpl(final String uaid) {
  checkNotNull(uaid, "uaid");
  this.uaid = uaid;
}
org.jboss.aerogear.simplepush.util

Most used classes

  • ArgumentUtil
  • CryptoUtil
  • UUIDUtil
  • VersionExtractor
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now