org.springframework.social.partnercenter.api.profile.MPNProfile Maven / Gradle / Ivy
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