Class Tenant.Builder<T extends Tenant.Builder<T>>
- java.lang.Object
-
- org.jclouds.openstack.keystone.v2_0.domain.Tenant.Builder<T>
-
-
Constructor Summary
Constructors Constructor Description Builder()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description Tenant
build()
T
description(String description)
T
enabled(Boolean enabled)
T
fromTenant(Tenant in)
T
id(String id)
T
name(String name)
protected abstract T
self()
-
-
-
Method Detail
-
self
protected abstract T self()
-
id
public T id(String id)
- See Also:
Tenant.getId()
-
enabled
public T enabled(Boolean enabled)
- See Also:
Tenant.isEnabled()
-
name
public T name(String name)
- See Also:
Tenant.getName()
-
description
public T description(String description)
- See Also:
Tenant.getDescription()
-
build
public Tenant build()
-
-