br.com.anteros.commons.services.rest.service.impl.SecurityAccessServiceImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Anteros-Services-RestSQL Show documentation
Show all versions of Anteros-Services-RestSQL Show documentation
Anteros Services REST SQL for Java.
package br.com.anteros.commons.services.rest.service.impl;
import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.annotation.Scope;
import org.springframework.stereotype.Service;
import br.com.anteros.commons.services.rest.repository.SecurityAccessRepository;
import br.com.anteros.commons.services.rest.service.SecurityAccessService;
import br.com.anteros.security.store.sql.domain.SecurityAccess;
import br.com.anteros.spring.service.SpringSQLService;
/**
* Generated by Anteros Generator Maven Plugin at 23/10/2019 10:25:34
**/
@Service("securityAccessService")
@Scope("prototype")
public class SecurityAccessServiceImpl extends SpringSQLService implements SecurityAccessService {
@Autowired
private SecurityAccessRepository securityAccessRepository;
@Override
public List getSecurityAccessBySystem(String system) {
return securityAccessRepository.getSecurityAccessBySystem(system);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy