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 Stringfingerprintprotected Stringnameprotected StringprivateKeyprotected StringpublicKeyprotected StringuserId
-
Constructor Summary
Constructors Constructor Description Builder()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description KeyPairbuild()Tfingerprint(String fingerprint)TfromKeyPair(KeyPair in)Tname(String name)TprivateKey(String privateKey)TpublicKey(String publicKey)protected abstract Tself()TuserId(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()
-
-