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