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

s.Anteros-Generator-Core.1.0.13.source-code.repositoryImplementation.ftl Maven / Gradle / Ivy

package ${packageName};

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Repository;

import ${importEntity};
import ${importRepository};
import br.com.anteros.persistence.session.SQLSessionFactory;
import br.com.anteros.persistence.session.repository.impl.GenericSQLRepository;

/**
*  Generated by Anteros Generator Maven Plugin at ${time}
**/

@Repository("${repository}")
public class ${repositoryNameImpl} extends GenericSQLRepository<${entityType}, Long> implements ${repositoryName} {

	@Autowired
	public ${repositoryNameImpl}(SQLSessionFactory sessionFactory) {
		super(sessionFactory);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy