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

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

import com.fasterxml.jackson.annotation.JsonInclude;

@JsonInclude(JsonInclude.Include.NON_NULL)
public class LegalBusinessProfile {
	private String companyName;
	private Address address;
	private Contact primaryContact;
	private Address companyApproverAddress;
	private SupportProfile companyApproverEmail;
	private String profileType;
	private Map links;
	private Map attributes;

	public String getCompanyName() {
		return companyName;
	}

	public LegalBusinessProfile setCompanyName(String companyName) {
		this.companyName = companyName;
		return this;
	}

	public Address getAddress() {
		return address;
	}

	public LegalBusinessProfile setAddress(Address address) {
		this.address = address;
		return this;
	}

	public Contact getPrimaryContact() {
		return primaryContact;
	}

	public LegalBusinessProfile setPrimaryContact(Contact primaryContact) {
		this.primaryContact = primaryContact;
		return this;
	}

	public Address getCompanyApproverAddress() {
		return companyApproverAddress;
	}

	public LegalBusinessProfile setCompanyApproverAddress(Address companyApproverAddress) {
		this.companyApproverAddress = companyApproverAddress;
		return this;
	}

	public SupportProfile getCompanyApproverEmail() {
		return companyApproverEmail;
	}

	public LegalBusinessProfile setCompanyApproverEmail(SupportProfile companyApproverEmail) {
		this.companyApproverEmail = companyApproverEmail;
		return this;
	}

	public String getProfileType() {
		return profileType;
	}

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

	public Map getLinks() {
		return links;
	}

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

	public Map getAttributes() {
		return attributes;
	}

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy