Sonar Fixes, Formatting
[aaf/authz.git] / auth / auth-oauth / src / main / java / org / onap / aaf / auth / oauth / facade / DirectIntrospectImpl.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.auth.oauth.facade;
23
24 import org.onap.aaf.auth.dao.cass.OAuthTokenDAO;
25 import org.onap.aaf.auth.env.AuthzTrans;
26 import org.onap.aaf.auth.layer.FacadeImpl;
27 import org.onap.aaf.auth.layer.Result;
28 import org.onap.aaf.auth.oauth.mapper.MapperIntrospect;
29 import org.onap.aaf.auth.oauth.service.OAuthService;
30
31 public class DirectIntrospectImpl<INTROSPECT> extends FacadeImpl implements DirectIntrospect<INTROSPECT> {
32     protected OAuthService service;
33     private MapperIntrospect<INTROSPECT> mapper;
34
35     public DirectIntrospectImpl(OAuthService service, MapperIntrospect<INTROSPECT> mapper) {
36         this.service = service;
37         this.mapper = mapper;
38     }
39
40     /* (non-Javadoc)
41      * @see org.onap.aaf.auth.oauth.facade.OAFacade#mappedIntrospect(org.onap.aaf.auth.env.test.AuthzTrans, java.lang.String)
42      */
43     @Override
44     public Result<INTROSPECT> mappedIntrospect(AuthzTrans trans, String token) {
45         Result<INTROSPECT> rti;
46          Result<OAuthTokenDAO.Data> rs = service.introspect(trans,token);
47         if (rs.notOK()) {
48             rti = Result.err(rs);
49         } else if (rs.isEmpty()) {
50             rti = Result.err(Result.ERR_NotFound,"No Token %s found",token);
51         } else {
52             rti = mapper.introspect(rs);
53         }
54         return rti;
55     }
56
57 }