org.obiba.mica.core.repository.EntityStateRepository.java Source code

Java tutorial

Introduction

Here is the source code for org.obiba.mica.core.repository.EntityStateRepository.java

Source

/*
 * Copyright (c) 2018 OBiBa. All rights reserved.
 *
 * This program and the accompanying materials
 * are made available under the terms of the GNU Public License v3.0.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

package org.obiba.mica.core.repository;

import org.obiba.mica.core.domain.EntityState;
import org.springframework.data.mongodb.repository.MongoRepository;
import org.springframework.data.mongodb.repository.Query;

import java.util.List;

public interface EntityStateRepository<T extends EntityState> extends MongoRepository<T, String> {

    List<T> findByPublishedTagNotNull();

    Long countByPublishedTagNotNullAndRevisionsAheadGreaterThanEqual(int value);

    List<T> findByPublishedTagNotNullAndIdIn(Iterable<String> datasetIds);

    @Query(value = "{ publishedTag : { $exists: true } }", fields = "{_id : 1}")
    List<T> findAllPublishedIds();
}