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

org.springframework.social.partnercenter.oauth2.PartnerCenterAccessGrant Maven / Gradle / Ivy

Go to download

A provider extension for Spring Social to enable connectivity with Microsoft and an API binding for Microsoft's Partner Center API.

There is a newer version: 10.11.0
Show newest version
package org.springframework.social.partnercenter.oauth2;

import org.springframework.social.oauth2.AccessGrant;

public class PartnerCenterAccessGrant extends AccessGrant {
	private String id_token;

	public PartnerCenterAccessGrant(String accessToken, String scope, String refreshToken, String id_token, Long expiresIn) {
		super(accessToken, scope, refreshToken, expiresIn);
		this.id_token = id_token;
	}

	public String getId_token() {
		return id_token;
	}

	public PartnerCenterAccessGrant setId_token(String id_token) {
		this.id_token = id_token;
		return this;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy