@Override
public IOpenShiftSSHKey getSSHKeyByPublicKey(String publicKey)
throws OpenShiftUnknonwSSHKeyTypeException, OpenShiftException {
Assert.notNull(publicKey);
IOpenShiftSSHKey matchingKey = null;
if (publicKey == null) {
return null;
}
for (SSHKeyResource key : getCachedOrLoadSSHKeys().values()) {