All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.crnk.jpa.DefaultJpaRepositoryFactory Maven / Gradle / Ivy

There is a newer version: 2.6.20180522184741
Show newest version
package io.crnk.jpa;

import io.crnk.core.engine.information.resource.ResourceField;
import java.io.Serializable;

public class DefaultJpaRepositoryFactory implements JpaRepositoryFactory {

	@Override
	public  JpaEntityRepository createEntityRepository(JpaModule module,
			JpaRepositoryConfig config) {
		return new JpaEntityRepository<>(module, config);
	}

	@Override
	public  JpaRelationshipRepository
	createRelationshipRepository(
			JpaModule module, ResourceField field, JpaRepositoryConfig config) {
		return new JpaRelationshipRepository<>(module, field, config);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy