blob: b43e93b494144e59cec6311772a3e05fc58fbfec [file] [log] [blame]
/*
*******************************************************************************
* Copyright (c) 2018 Contributors to the Eclipse Foundation
*
* See the NOTICE file(s) distributed with this work for additional
* information regarding copyright ownership.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identifier: EPL-2.0
*******************************************************************************
*/
package org.eclipse.openk.db.dao;
import org.eclipse.openk.db.model.RefGmStatus;
import javax.persistence.EntityManager;
import javax.persistence.Query;
import java.util.List;
public class RefGmStatusDao extends GenericDaoJpa<RefGmStatus, Integer>{
public RefGmStatusDao() {
super();
}
public RefGmStatusDao(EntityManager em) {
super(em);
}
public List<RefGmStatus> getGmStatusInTx() {
try {
String selectString = "from RefGmStatus t";
Query q = getEM().createQuery(selectString);
return (List<RefGmStatus>) q.getResultList();
} catch (Exception t) {
LOGGER.error(t.getMessage());
return null; // NOSONAR We decide to use null logic
}
}
}