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

org.springframework.social.partnercenter.security.DelegatedAccessGrant 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.security;

import java.util.UUID;

public class DelegatedAccessGrant {
    private String authorizationCode;
    private String state;
    private UUID tenantId;

    public DelegatedAccessGrant(String authorizationCode, String state, UUID tenantId) {
        this.authorizationCode = authorizationCode;
        this.state = state;
        this.tenantId = tenantId;
    }

    public String getAuthorizationCode() {
        return authorizationCode;
    }

    public void setAuthorizationCode(String authorizationCode) {
        this.authorizationCode = authorizationCode;
    }

    public String getState() {
        return state;
    }

    public void setState(String state) {
        this.state = state;
    }

    public UUID getTenantId() {
        return tenantId;
    }

    public void setTenantId(UUID tenantId) {
        this.tenantId = tenantId;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy