org.whispersystems.signalservice.api.messages.calls.TurnServerInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of signal-service-java Show documentation
Show all versions of signal-service-java Show documentation
Signal Service communication library for Java
package org.whispersystems.signalservice.api.messages.calls;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.List;
public class TurnServerInfo {
@JsonProperty
private String username;
@JsonProperty
private String password;
@JsonProperty
private List urls;
public String getUsername() {
return username;
}
public String getPassword() {
return password;
}
public List getUrls() {
return urls;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy