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

s.Anteros-Generator-Core.1.0.0.source-code.securityConfiguration.ftl Maven / Gradle / Ivy

There is a newer version: 2.0.16
Show newest version
package ${packageName};

import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;

import br.com.anteros.security.spring.config.AnterosSpringSecurityConfiguration;

@Configuration
@ComponentScan(basePackages = { "br.com.anteros.security" })
public class SecurityConfiguration extends AnterosSpringSecurityConfiguration {

	@Override
	public String systemName() {
		return "** INFORME AQUI O NOME DO SISTEMA **";
	}

	@Override
	public String description() {
		return "** INFORME AQUI A DESCRIÇÃO DO SISTEMA **" ;
	}

	@Override
	public String version() {
		return "1.0.0";
	}

	@Override
	public Boolean adminNeedsPermission() {
		return false;
	}

	@Override
	public String packageToScanSecurity() {
		return "** INFORME AQUI OS PACOTES PARA PROCURAR RECURSOS/AÇÕES DE SEGURANÇA **";
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy