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

org.springframework.social.partnercenter.api.profile.MPNProfile 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.profile;

import java.util.Map;

import org.springframework.social.partnercenter.api.Link;

import com.fasterxml.jackson.annotation.JsonInclude;

@JsonInclude(JsonInclude.Include.NON_NULL)
public class MPNProfile {
	private String mpnId;
	private String profileType;
	private Map links;
	private Map attributes;

	public String getMpnId() {
		return mpnId;
	}

	public MPNProfile setMpnId(String mpnId) {
		this.mpnId = mpnId;
		return this;
	}

	public String getProfileType() {
		return profileType;
	}

	public MPNProfile setProfileType(String profileType) {
		this.profileType = profileType;
		return this;
	}

	public Map getLinks() {
		return links;
	}

	public MPNProfile setLinks(Map links) {
		this.links = links;
		return this;
	}

	public Map getAttributes() {
		return attributes;
	}

	public MPNProfile setAttributes(Map attributes) {
		this.attributes = attributes;
		return this;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy