ch.viascom.hipchat.api.models.capability.CapabilityOauth2Provider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hipchat-api Show documentation
Show all versions of hipchat-api Show documentation
A HipChat v2 API full implementation for Java
package ch.viascom.hipchat.api.models.capability;
import lombok.Data;
import java.io.Serializable;
/**
* Created by Patrick Bösch on 09.05.16.
*/
@Data
public class CapabilityOauth2Provider implements Serializable {
/**
* The OAuth 2 token endpoint for retrieving an access token
*/
private String tokenUrl;
/**
* The OAuth 2 endpoint to direct browsers to in order to receive an authorization code that can be later exchanged using the token URL for an access token
*/
private String authorizationUrl;
}