a41c5eb736d2d375b05cb87d967f7a25f075e66d
[aaf/authz.git] / cadi / core / src / main / java / org / onap / aaf / cadi / lur / ConfigPrincipal.java
1 /**
2  * ============LICENSE_START====================================================
3  * org.onap.aaf
4  * ===========================================================================
5  * Copyright (c) 2018 AT&T Intellectual Property. All rights reserved.
6  * ===========================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END====================================================
19  *
20  */
21
22 package org.onap.aaf.cadi.lur;
23
24 import java.io.IOException;
25 import java.security.Principal;
26
27 import org.onap.aaf.cadi.GetCred;
28 import org.onap.aaf.cadi.Symm;
29
30 public class ConfigPrincipal implements Principal, GetCred {
31     private String name;
32     private byte[] cred;
33     private String content;
34
35     public ConfigPrincipal(String name, String passwd) {
36         this.name = name;
37         this.cred = passwd.getBytes();
38         content = null;
39     }
40
41     public ConfigPrincipal(String name, byte[] cred) {
42         this.name = name;
43         this.cred = cred;
44         content = null;
45     }
46
47     public String getName() {
48         return name;
49     }
50     
51     public byte[] getCred() {
52         return cred;
53     }
54
55     public String toString() {
56         return name;
57     }
58     
59     public String getAsBasicAuthHeader() throws IOException {
60         if (content ==null) {
61             String s = name + ':' + new String(cred);
62             content = "Basic " + Symm.base64.encode(s);  
63         } else if (!content.startsWith("Basic ")) { // content is the saved password from construction
64             String s = name + ':' + content;
65             content = "Basic " + Symm.base64.encode(s);  
66         }
67         return content;
68     }
69 }