View Javadoc
1   /**
2    * Copyright 2004-2013 The Kuali Foundation
3    *
4    * Licensed under the Educational Community License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    *
8    * http://www.opensource.org/licenses/ecl2.php
9    *
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
15   */
16  package org.kuali.common.dns.dnsme.model;
17  
18  import org.kuali.common.core.build.ValidatingBuilder;
19  import org.kuali.common.core.json.jackson.DecryptingDeserializer;
20  import org.kuali.common.core.json.jackson.EncryptingSerializer;
21  import org.kuali.common.core.validate.annotation.IdiotProofImmutable;
22  
23  import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
24  import com.fasterxml.jackson.databind.annotation.JsonSerialize;
25  
26  @IdiotProofImmutable
27  @JsonDeserialize(builder = DNSMadeEasyCredentials.Builder.class)
28  public final class DNSMadeEasyCredentials {
29  
30  	@JsonSerialize(using = EncryptingSerializer.class)
31  	private final String apiKey;
32  
33  	@JsonSerialize(using = EncryptingSerializer.class)
34  	private final String secretKey;
35  
36  	private DNSMadeEasyCredentials(Builder builder) {
37  		this.apiKey = builder.apiKey;
38  		this.secretKey = builder.secretKey;
39  	}
40  
41  	public static Builder builder() {
42  		return new Builder();
43  	}
44  
45  	public static class Builder extends ValidatingBuilder<DNSMadeEasyCredentials> {
46  
47  		@JsonDeserialize(using = DecryptingDeserializer.class)
48  		private String apiKey;
49  
50  		@JsonDeserialize(using = DecryptingDeserializer.class)
51  		private String secretKey;
52  
53  		public Builder withApiKey(String apiKey) {
54  			this.apiKey = apiKey;
55  			return this;
56  		}
57  
58  		public Builder withSecretKey(String secretKey) {
59  			this.secretKey = secretKey;
60  			return this;
61  		}
62  
63  		@Override
64  		public DNSMadeEasyCredentials build() {
65  			return validate(new DNSMadeEasyCredentials(this));
66  		}
67  
68  		public String getApiKey() {
69  			return apiKey;
70  		}
71  
72  		public String getSecretKey() {
73  			return secretKey;
74  		}
75  
76  	}
77  
78  	public String getApiKey() {
79  		return apiKey;
80  	}
81  
82  	public String getSecretKey() {
83  		return secretKey;
84  	}
85  
86  }