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

org.springframework.social.partnercenter.api.customer.Role Maven / Gradle / Ivy

package org.springframework.social.partnercenter.api.customer;

import java.util.Map;

public class Role {
	private String id;
	private String name;
	private Map attributes;

	public String getId() {
		return id;
	}

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

	public String getName() {
		return name;
	}

	public Role setName(String name) {
		this.name = name;
		return this;
	}

	public Map getAttributes() {
		return attributes;
	}

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy