Java tutorial
/* * 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 com.tapas.evidence.repository; import java.util.List; import javax.persistence.EntityManager; import javax.persistence.PersistenceContext; import javax.persistence.Query; import org.springframework.security.core.context.SecurityContextHolder; import com.tapas.evidence.credential.EvidenceUserDetails; import com.tapas.evidence.entity.Teacher; /** * @author Michal Bocek * @since 1.0.0 */ public class TeacherRepositoryImpl implements TeacherRepositoryCustom { @PersistenceContext private EntityManager entityManager; /* (non-Javadoc) * @see com.tapas.evidence.repository.TeacherRepositoryCustom#findAll() */ @Override @SuppressWarnings("unchecked") public List<Teacher> findAll() { final Long tenantId = ((EvidenceUserDetails) SecurityContextHolder.getContext().getAuthentication() .getPrincipal()).getTenantId(); Query query = this.entityManager.createNamedQuery(Teacher.QUERY_NAME_FIND_ALL_BY_DELETED_FLAG); query.setParameter("deleted", Boolean.FALSE); query.setParameter("tenantId", tenantId); return query.getResultList(); } /* (non-Javadoc) * @see com.tapas.evidence.repository.TeacherRepositoryCustom#findByKindergartenId(java.lang.Long) */ @Override @SuppressWarnings("unchecked") public List<Teacher> findByKindergartenId(final Long kindergarteId) { final Long tenantId = ((EvidenceUserDetails) SecurityContextHolder.getContext().getAuthentication() .getPrincipal()).getTenantId(); Query query = this.entityManager .createNamedQuery(Teacher.QUERY_NAME_FIND_BY_KINDERGARTEN_ID_AND_DELETED_FLAG); query.setParameter("kindergartenId", kindergarteId); query.setParameter("deleted", Boolean.FALSE); query.setParameter("tenantId", tenantId); return query.getResultList(); } }