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

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

import java.util.Map;

public class User {
	private String id;
	private String usageLocation;
	private String userPrincipalName;
	private String firstName;
	private String lastName;
	private String displayName;
	private PasswordProfile passwordProfile;
	private String lastDirectorySyncTime;
	private Map attributes;
	private String userDomainType;
	private String state;
	private String softDeletionTime;


	public String getUsageLocation() {
		return usageLocation;
	}

	public User setUsageLocation(String usageLocation) {
		this.usageLocation = usageLocation;
		return this;
	}

	public String getUserPrincipalName() {
		return userPrincipalName;
	}

	public User setUserPrincipalName(String userPrincipalName) {
		this.userPrincipalName = userPrincipalName;
		return this;
	}

	public String getFirstName() {
		return firstName;
	}

	public User setFirstName(String firstName) {
		this.firstName = firstName;
		return this;
	}

	public String getLastName() {
		return lastName;
	}

	public User setLastName(String lastName) {
		this.lastName = lastName;
		return this;
	}

	public String getDisplayName() {
		return displayName;
	}

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

	public PasswordProfile getPasswordProfile() {
		return passwordProfile;
	}

	public User setPasswordProfile(PasswordProfile passwordProfile) {
		this.passwordProfile = passwordProfile;
		return this;
	}

	public Map getAttributes() {
		return attributes;
	}

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

	public String getId() {
		return id;
	}

	public User setId(String id) {
		this.id = id;
		return this;
	}

	public String getLastDirectorySyncTime() {
		return lastDirectorySyncTime;
	}

	public User setLastDirectorySyncTime(String lastDirectorySyncTime) {
		this.lastDirectorySyncTime = lastDirectorySyncTime;
		return this;
	}

	public String getUserDomainType() {
		return userDomainType;
	}

	public User setUserDomainType(String userDomainType) {
		this.userDomainType = userDomainType;
		return this;
	}

	public String getState() {
		return state;
	}

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

	public String getSoftDeletionTime() {
		return softDeletionTime;
	}

	public User setSoftDeletionTime(String softDeletionTime) {
		this.softDeletionTime = softDeletionTime;
		return this;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy