001 /**
002 *
003 */
004 package de.jw.cloud42.core.domain;
005
006 import javax.persistence.Entity;
007 import javax.persistence.UniqueConstraint;
008
009 /**
010 * @author fbitzer
011 *
012 */
013 @Entity
014 public class KeypairMapping extends AutoIdObject {
015
016 private String keypairName;
017 private String rsaPrivateKey;
018
019
020 /**
021 * @return the keypairName
022 */
023 public String getKeypairName() {
024 return keypairName;
025 }
026 /**
027 * @param keypairName the keypairName to set
028 */
029 public void setKeypairName(String keypairName) {
030 this.keypairName = keypairName;
031 }
032 /**
033 * @return the rsaPrivateKey
034 */
035 public String getRsaPrivateKey() {
036 return rsaPrivateKey;
037 }
038 /**
039 * @param rsaPrivateKey the rsaPrivateKey to set
040 */
041 public void setRsaPrivateKey(String rsaPrivateKey) {
042 this.rsaPrivateKey = rsaPrivateKey;
043 }
044
045
046
047
048 }