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

com.huawei.openstack4j.openstack.tacker.domain.AuthCredentials Maven / Gradle / Ivy

There is a newer version: 1.0.26
Show newest version
/*******************************************************************************
 * 	Copyright 2016 ContainX and OpenStack4j                                          
 * 	                                                                                 
 * 	Licensed under the Apache License, Version 2.0 (the "License"); you may not      
 * 	use this file except in compliance with the License. You may obtain a copy of    
 * 	the License at                                                                   
 * 	                                                                                 
 * 	    http://www.apache.org/licenses/LICENSE-2.0                                   
 * 	                                                                                 
 * 	Unless required by applicable law or agreed to in writing, software              
 * 	distributed under the License is distributed on an "AS IS" BASIS, WITHOUT        
 * 	WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the         
 * 	License for the specific language governing permissions and limitations under    
 * 	the License.                                                                     
 *******************************************************************************/
package com.huawei.openstack4j.openstack.tacker.domain;

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonRootName;
import com.google.common.base.MoreObjects;

/**
 *
 * @author Vishvesh Deshmukh
 * @date Aug 18, 2016
 */
@JsonRootName("auth_cred")
@JsonIgnoreProperties(ignoreUnknown = true)
public class AuthCredentials {

	private String username;

	@JsonProperty("project_name")
	private String projectName;

	@JsonProperty("user_id")
	private String userId;

	@JsonProperty("user_domain_name")
	private String userDomainName;

	@JsonProperty("project_id")
	private String projectId;

	@JsonProperty("auth_url")
	private String authUrl;

	private String password;

	@JsonProperty("project_domain_name")
	private String projectDomainName;

	public static AuthCredentials create() {
		return new AuthCredentials();
	}

	@Override
	public String toString() {
		return MoreObjects.toStringHelper(this).add("username", username).add("projectName", projectName)
				.add("userId", userId).add("userDomainName", userDomainName).add("projectId", projectId)
				.add("authUrl", authUrl).add("password", password).add("projectDomainName", projectDomainName)
				.toString();
	}

	/**
	 * Username to Set
	 *
	 * @param username the username to set
	 * @return AuthCredentials
	 */
	public AuthCredentials username(String username) {
		this.username = username;
		return this;
	}

	/**
	 * password to Set
	 *
	 * @param password the password to set
	 * @return AuthCredentials
	 */
	public AuthCredentials password(String password) {
		this.password = password;
		return this;
	}

	/**
	 * projectName to Set
	 *
	 * @param projectName the projectName to set
	 * @return AuthCredentials
	 */
	public AuthCredentials projectName(String projectName) {
		this.projectName = projectName;
		return this;
	}

	/**
	 * userId to Set
	 *
	 * @param userId the userId to set
	 * @return AuthCredentials
	 */
	public AuthCredentials userId(String userId) {
		this.userId = userId;
		return this;
	}

	/**
	 * authUrl to Set
	 *
	 * @param authUrl the authUrl to set
	 * @return AuthCredentials
	 */
	public AuthCredentials authUrl(String authUrl) {
		this.authUrl = authUrl;
		return this;
	}

	/**
	 * projectId to Set
	 *
	 * @param projectId the projectId to set
	 * @return AuthCredentials
	 */
	public AuthCredentials projectId(String projectId) {
		this.projectId = projectId;
		return this;
	}

	/**
	 * projectDomainName to Set
	 *
	 * @param projectDomainName the projectDomainName to set
	 * @return AuthCredentials
	 */
	public AuthCredentials projectDomainName(String projectDomainName) {
		this.projectDomainName = projectDomainName;
		return this;
	}

	/**
	 * userDomainName to Set
	 *
	 * @param userDomainName the userDomainName to set
	 * @return AuthCredentials
	 */
	public AuthCredentials userDomainName(String userDomainName) {
		this.userDomainName = userDomainName;
		return this;
	}

	/**
	 * @return the username
	 */
	public String getUsername() {
		return username;
	}

	/**
	 * @return the projectName
	 */
	public String getProjectName() {
		return projectName;
	}

	/**
	 * @return the userId
	 */
	public String getUserId() {
		return userId;
	}

	/**
	 * @return the userDomainName
	 */
	public String getUserDomainName() {
		return userDomainName;
	}

	/**
	 * @return the projectId
	 */
	public String getProjectId() {
		return projectId;
	}

	/**
	 * @return the authUrl
	 */
	public String getAuthUrl() {
		return authUrl;
	}

	/**
	 * @return the password
	 */
	public String getPassword() {
		return password;
	}

	/**
	 * @return the projectDomainName
	 */
	public String getProjectDomainName() {
		return projectDomainName;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy