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

org.whispersystems.websocket.configuration.WebSocketConfiguration Maven / Gradle / Ivy

There is a newer version: 0.5.9
Show newest version
package org.whispersystems.websocket.configuration;

import com.fasterxml.jackson.annotation.JsonProperty;

import javax.validation.Valid;
import javax.validation.constraints.NotNull;

import io.dropwizard.request.logging.LogbackAccessRequestLogFactory;
import io.dropwizard.request.logging.RequestLogFactory;

public class WebSocketConfiguration {

  @Valid
  @NotNull
  @JsonProperty
  private RequestLogFactory requestLog = new LogbackAccessRequestLogFactory();

  public RequestLogFactory getRequestLog() {
    return requestLog;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy