Class Service.Builder<T extends Service.Builder<T>>
- java.lang.Object
-
- org.jclouds.openstack.keystone.v2_0.domain.Service.Builder<T>
-
-
Constructor Summary
Constructors Constructor Description Builder()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description Service
build()
T
description(String description)
T
endpoint(Endpoint endpoint)
T
endpoints(Iterable<Endpoint> endpoints)
T
fromService(Service in)
T
id(String id)
T
name(String name)
protected abstract T
self()
T
type(String type)
-
-
-
Method Detail
-
self
protected abstract T self()
-
id
public T id(String id)
- See Also:
Service.getId()
-
type
public T type(String type)
- See Also:
Service.getType()
-
name
public T name(String name)
- See Also:
Service.getName()
-
description
public T description(String description)
- See Also:
Service.getDescription()
-
endpoint
public T endpoint(Endpoint endpoint)
- See Also:
Service.delegate()
-
endpoints
public T endpoints(Iterable<Endpoint> endpoints)
- See Also:
Service.delegate()
-
build
public Service build()
-
-