mirror of https://github.com/apache/cloudstack.git
33 lines
546 B
Java
33 lines
546 B
Java
package com.cloud.user;
|
|
|
|
import com.cloud.acl.ControlledEntity;
|
|
|
|
public interface SSHKeyPair extends ControlledEntity {
|
|
|
|
/**
|
|
* @return The id of the key pair.
|
|
*/
|
|
public long getId();
|
|
|
|
/**
|
|
* @return The given name of the key pair.
|
|
*/
|
|
public String getName();
|
|
|
|
/**
|
|
* @return The finger print of the public key.
|
|
*/
|
|
public String getFingerprint();
|
|
|
|
/**
|
|
* @return The public key of the key pair.
|
|
*/
|
|
public String getPublicKey();
|
|
|
|
/**
|
|
* @return The private key of the key pair.
|
|
*/
|
|
public String getPrivateKey();
|
|
|
|
}
|