Sonar Fixes, Formatting
[aaf/authz.git] / cadi / core / src / main / java / org / onap / aaf / cadi / principal / TaggedPrincipal.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 package org.onap.aaf.cadi.principal;
22
23 import java.security.Principal;
24
25 import org.onap.aaf.cadi.CadiException;
26
27 public abstract class TaggedPrincipal implements Principal {
28
29     public TaggedPrincipal() {
30         tagLookup = null;
31     }
32
33     public TaggedPrincipal(final TagLookup tl) {
34         tagLookup = tl;
35     }
36
37     public abstract String tag();  // String representing what kind of Authentication occurred.
38
39     public interface TagLookup {
40         public String lookup() throws CadiException;
41     }
42
43     private TagLookup tagLookup;
44
45     public void setTagLookup(TagLookup tl) {
46         tagLookup = tl;
47     }
48
49     public String personalName() {
50         if (tagLookup == null) {
51             return getName();
52         }
53         try {
54             return tagLookup.lookup();
55         } catch (CadiException e) {
56             return getName();
57         }
58     }
59
60 }