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

org.openstack4j.openstack.identity.domain.Auth Maven / Gradle / Ivy

package org.openstack4j.openstack.identity.domain;

import com.fasterxml.jackson.annotation.JsonIgnore;

public abstract class Auth implements org.openstack4j.openstack.common.Auth {

	private static final long serialVersionUID = 1L;
	
	private String tenantId;
	private String tenantName;
	@JsonIgnore
	private transient Type type;
	
	protected Auth(Type type) {
	    this.type = type;
	}
	
	public String getTenantId() {
		return tenantId;
	}
	public void setTenantId(String tenantId) {
		this.tenantId = tenantId;
	}
	public String getTenantName() {
		return tenantName;
	}
	public void setTenantName(String tenantName) {
		this.tenantName = tenantName;
	}
	
	@JsonIgnore
	public Type getType() {
	    return type;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy