Class KeyPair.Builder<T extends KeyPair.Builder<T>>
- java.lang.Object
-
- org.jclouds.openstack.nova.v2_0.domain.KeyPair.Builder<T>
-
-
Field Summary
Fields Modifier and Type Field Description protected String
fingerprint
protected String
name
protected String
privateKey
protected String
publicKey
protected String
userId
-
Constructor Summary
Constructors Constructor Description Builder()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description KeyPair
build()
T
fingerprint(String fingerprint)
T
fromKeyPair(KeyPair in)
T
name(String name)
T
privateKey(String privateKey)
T
publicKey(String publicKey)
protected abstract T
self()
T
userId(String userId)
-
-
-
Method Detail
-
self
protected abstract T self()
-
publicKey
public T publicKey(String publicKey)
- See Also:
KeyPair.getPublicKey()
-
privateKey
public T privateKey(String privateKey)
- See Also:
KeyPair.getPrivateKey()
-
userId
public T userId(String userId)
- See Also:
KeyPair.getUserId()
-
name
public T name(String name)
- See Also:
KeyPair.getName()
-
fingerprint
public T fingerprint(String fingerprint)
- See Also:
KeyPair.getFingerprint()
-
build
public KeyPair build()
-
-