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

org.openstack4j.model.identity.v2.TenantUser Maven / Gradle / Ivy

There is a newer version: 3.12
Show newest version
package org.openstack4j.model.identity.v2;

import org.openstack4j.model.ModelEntity;

/**
 * A User from a Tenant perspective
 *
 * @author Jeremy Unruh
 */
public interface TenantUser extends ModelEntity {

    /**
     * @return the user identifier
     */
    String getId();

    /**
     * @return the name of the user
     */
    String getName();

    /**
     * @return the email address of the user
     */
    String getEmail();

    /**
     * @return true, if the user is enabled (active)
     */
    boolean isEnabled();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy