Example usage for org.springframework.stereotype Repository interface-usage

List of usage examples for org.springframework.stereotype Repository interface-usage

Introduction

In this page you can find the example usage for org.springframework.stereotype Repository interface-usage.

Usage

From source file com.abcseo.comments.dao.RepositoryMemHashImpl.java

public class RepositoryMemHashImpl implements Repository {
    HashMap<String, ArrayList<Comment>> repository = new HashMap<String, ArrayList<Comment>>();
    MessageDigest md;

    public RepositoryMemHashImpl() {
        try {

From source file com.abcseo.comments.dao.RepositoryTreapImpl.java

/**
 * Implementation of a comment repository backed by a treap database. A treap is
 * a binary tree. It gives reasonable performance up to 1 million entries on an
 * AMD x2
 */
@Service("TreapRepository")

From source file org.codetrack.database.file.FileRepository.java

/**
 * FileDatabase based Repository implementation
 *
 * @author josecmoj at 07/07/15.
 */
@Product(id = "codetrack-file-database")

From source file org.ala.repository.RepositoryImpl.java

/**
 * A simple implementation of a repository that knows how to store
 * documents on the file system and maintain any housekeeping
 * information. 
 * 
 * @author Dave Martin (David.Martin@csiro.au)

From source file org.icgc.dcc.portal.repository.DonorRepository.java

@Slf4j
@Component
public class DonorRepository implements Repository {

    private static final Type TYPE = Type.DONOR;
    private static final Kind KIND = Kind.DONOR;