org.mitre.openid.connect.repository.impl.JpaPairwiseIdentifierRepository.java Source code

Java tutorial

Introduction

Here is the source code for org.mitre.openid.connect.repository.impl.JpaPairwiseIdentifierRepository.java

Source

/*******************************************************************************
 * Copyright 2016 The MITRE Corporation
 *   and the MIT Internet Trust Consortium
 *
 * Licensed 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.mitre.openid.connect.repository.impl;

import javax.persistence.EntityManager;
import javax.persistence.PersistenceContext;
import javax.persistence.TypedQuery;

import org.mitre.openid.connect.model.PairwiseIdentifier;
import org.mitre.openid.connect.repository.PairwiseIdentifierRepository;
import org.springframework.stereotype.Repository;
import org.springframework.transaction.annotation.Transactional;

import static org.mitre.util.jpa.JpaUtil.getSingleResult;
import static org.mitre.util.jpa.JpaUtil.saveOrUpdate;

/**
 * @author jricher
 *
 */
@Repository
public class JpaPairwiseIdentifierRepository implements PairwiseIdentifierRepository {

    @PersistenceContext(unitName = "defaultPersistenceUnit")
    private EntityManager manager;

    /* (non-Javadoc)
     * @see org.mitre.openid.connect.repository.PairwiseIdentifierRepository#getBySectorIdentifier(java.lang.String, java.lang.String)
     */
    @Override
    public PairwiseIdentifier getBySectorIdentifier(String sub, String sectorIdentifierUri) {
        TypedQuery<PairwiseIdentifier> query = manager
                .createNamedQuery(PairwiseIdentifier.QUERY_BY_SECTOR_IDENTIFIER, PairwiseIdentifier.class);
        query.setParameter(PairwiseIdentifier.PARAM_SUB, sub);
        query.setParameter(PairwiseIdentifier.PARAM_SECTOR_IDENTIFIER, sectorIdentifierUri);

        return getSingleResult(query.getResultList());
    }

    /* (non-Javadoc)
     * @see org.mitre.openid.connect.repository.PairwiseIdentifierRepository#save(org.mitre.openid.connect.model.PairwiseIdentifier)
     */
    @Override
    @Transactional(value = "defaultTransactionManager")
    public void save(PairwiseIdentifier pairwise) {
        saveOrUpdate(pairwise.getId(), manager, pairwise);
    }

}