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

org.springframework.social.partnercenter.api.consent.Consent 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.api.consent;

import java.util.List;
import java.util.Objects;

import com.fasterxml.jackson.annotation.JsonInclude;

@JsonInclude(JsonInclude.Include.NON_NULL)
public class Consent {
    private String displayName;
    private String applicationId;
    private List applicationGrants;

    public Consent() {
    }

    public Consent(String displayName, String applicationId, List applicationGrants) {
        this.displayName = displayName;
        this.applicationId = applicationId;
        this.applicationGrants = applicationGrants;
    }

    public String getDisplayName() {
        return displayName;
    }

    public void setDisplayName(String displayName) {
        this.displayName = displayName;
    }

    public String getApplicationId() {
        return applicationId;
    }

    public void setApplicationId(String applicationId) {
        this.applicationId = applicationId;
    }

    public List getApplicationGrants() {
        return applicationGrants;
    }

    public void setApplicationGrants(List applicationGrants) {
        this.applicationGrants = applicationGrants;
    }

    @Override
    public boolean equals(Object o) {
        if (this == o) return true;
        if (o == null || getClass() != o.getClass()) return false;
        Consent consent = (Consent) o;
        return Objects.equals(displayName, consent.displayName) &&
                Objects.equals(applicationId, consent.applicationId) &&
                Objects.equals(applicationGrants, consent.applicationGrants);
    }

    @Override
    public int hashCode() {

        return Objects.hash(displayName, applicationId, applicationGrants);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy