Interface TenantBuilder
-
- All Superinterfaces:
Buildable.Builder<TenantBuilder,Tenant>
- All Known Implementing Classes:
KeystoneTenant.TenantConcreteBuilder
public interface TenantBuilder extends Buildable.Builder<TenantBuilder,Tenant>
A Builder which creates a Identity Tenant- Author:
- jeremy
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TenantBuilderdescription(String desc)TenantBuilderenabled(boolean enabled)TenantBuilderid(String id)TenantBuildername(String name)-
Methods inherited from interface org.openstack4j.common.Buildable.Builder
build, from
-
-
-
-
Method Detail
-
name
TenantBuilder name(String name)
- See Also:
Tenant.getName()
-
description
TenantBuilder description(String desc)
- See Also:
Tenant.getDescription()
-
id
TenantBuilder id(String id)
- See Also:
Tenant.getId()
-
enabled
TenantBuilder enabled(boolean enabled)
- See Also:
Tenant#getEnabled()
-
-