com.twilio.sdk.verbs.Uri Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of twilio-java-sdk Show documentation
Show all versions of twilio-java-sdk Show documentation
Release Candidate for Next-Gen Twilio Java Helper Library
package com.twilio.sdk.verbs;
public class Uri extends Verb {
/**
* Instantiates a new Uri to dial with Sip
*/
public Uri(String uri) {
super(V_URI, uri);
this.allowedVerbs = null;
}
public void setUsername(String username) {
this.set("username", username);
}
public void setPassword(String password) {
this.set("password", password);
}
}