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 Tenantbuild()Tdescription(String description)Tenabled(Boolean enabled)TfromTenant(Tenant in)Tid(String id)Tname(String name)protected abstract Tself()
-
-
-
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()
-
-