Package org.apache.airavata.credential.store.impl

Source Code of org.apache.airavata.credential.store.impl.CredentialStoreImpl

/*
*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements.  See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership.  The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License.  You may obtain a copy of the License at
*
*   http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied.  See the License for the
* specific language governing permissions and limitations
* under the License.
*
*/

package org.apache.airavata.credential.store.impl;

import org.apache.airavata.common.utils.DBUtil;
import org.apache.airavata.credential.store.*;
import org.apache.airavata.credential.store.impl.db.CommunityUserDAO;
import org.apache.airavata.credential.store.impl.db.CredentialsDAO;

import java.io.Serializable;


/**
* Credential store API implementation.
*/
public class CredentialStoreImpl implements CredentialStore, Serializable {

    private CommunityUserDAO communityUserDAO;
    private CredentialsDAO credentialsDAO;

    public CredentialStoreImpl(DBUtil dbUtil) {

        this.communityUserDAO = new CommunityUserDAO(dbUtil);
        this.credentialsDAO = new CredentialsDAO(dbUtil);
    }

    @Override
    public String getPortalUser(String gatewayName, String communityUser) throws CredentialStoreException {
        CertificateCredential certificateCredential
                = this.credentialsDAO.getCredential(gatewayName, communityUser);
        return certificateCredential.getPortalUserName();
    }

    @Override
    public AuditInfo getAuditInfo(String gatewayName, String communityUser)
            throws CredentialStoreException {

        CertificateCredential certificateCredential
                = this.credentialsDAO.getCredential(gatewayName, communityUser);

        AuditInfo auditInfo = new AuditInfo();

        CommunityUser retrievedUser = certificateCredential.getCommunityUser();
        auditInfo.setCommunityUserName(retrievedUser.getUserName());
        auditInfo.setCredentialLifeTime(certificateCredential.getLifeTime());
        auditInfo.setCredentialsRequestedTime(certificateCredential.getCertificateRequestedTime());
        auditInfo.setGatewayName(gatewayName);
        auditInfo.setNotAfter(certificateCredential.getNotAfter());
        auditInfo.setNotBefore(certificateCredential.getNotBefore());
        auditInfo.setPortalUserName(certificateCredential.getPortalUserName());

        return auditInfo;  //To change body of implemented methods use File | Settings | File Templates.
    }

    @Override
    public void updateCommunityUserEmail(String gatewayName, String communityUser, String email) throws CredentialStoreException {
        this.communityUserDAO.updateCommunityUser(
                new CommunityUser(gatewayName, communityUser, email));
    }

    @Override
    public void removeCredentials(String gatewayName, String communityUser) throws CredentialStoreException {
        credentialsDAO.deleteCredentials(gatewayName, communityUser);
    }



}
TOP

Related Classes of org.apache.airavata.credential.store.impl.CredentialStoreImpl

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.