blob: ef36ea3b77f74721142d9adcc93c5bd63bd0c109 [file] [log] [blame]
/**
* Licensed to jclouds, Inc. (jclouds) under one or more
* contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. jclouds licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.jclouds.cloudstack.domain;
import com.google.common.base.Objects;
import com.google.gson.annotations.SerializedName;
/**
* @author Vijay Kiran
*/
public class SshKeyPair implements Comparable<SshKeyPair> {
public static Builder builder() {
return new Builder();
}
public static class Builder {
private String fingerprint;
private String name;
private String privateKey;
public Builder fingerprint(String fingerprint) {
this.fingerprint = fingerprint;
return this;
}
public Builder name(String name) {
this.name = name;
return this;
}
public Builder privateKey(String privateKey) {
this.privateKey = privateKey;
return this;
}
public SshKeyPair build() {
return new SshKeyPair(fingerprint, name, privateKey);
}
}
// for deserialization
SshKeyPair() {
}
private String fingerprint;
private String name;
@SerializedName("privatekey")
private String privateKey;
public SshKeyPair(String fingerprint, String name, String privateKey) {
this.fingerprint = fingerprint;
this.name = name;
this.privateKey = privateKey;
}
public String getFingerprint() {
return fingerprint;
}
public String getName() {
return name;
}
public String getPrivateKey() {
return privateKey;
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
SshKeyPair that = (SshKeyPair) o;
if (!Objects.equal(fingerprint, that.fingerprint)) return false;
if (!Objects.equal(name, that.name)) return false;
if (!Objects.equal(privateKey, that.privateKey)) return false;
return true;
}
@Override
public int hashCode() {
return Objects.hashCode(fingerprint, name, privateKey);
}
@Override
public String toString() {
return "SshKeyPair{" +
"fingerprint='" + fingerprint + '\'' +
", name='" + name + '\'' +
", privateKey='" + privateKey + '\'' +
'}';
}
@Override
public int compareTo(SshKeyPair arg0) {
return fingerprint.compareTo(arg0.getFingerprint());
}
}