Add Source Code Linter Pipeline

This commit is contained in:
Siwat Sirichai 2020-10-29 16:38:56 +07:00
parent 0d0e7140c4
commit d252f6ef50
313 changed files with 36277 additions and 0 deletions

View file

@ -0,0 +1,33 @@
package +zoccolo+.web.authentication;
import java.util.Collection;
import org.springframework.security.authentication.UsernamePasswordAuthenticationToken;
import org.springframework.security.core.GrantedAuthority;
import java.math.BigInteger;
import java.security.MessageDigest;
import java.security.NoSuchAlgorithmException;
import +jpapath+.+tabella+;
public final class SimpleUsernamePasswordAuthenticationToken
extends UsernamePasswordAuthenticationToken {
private static final long serialVersionUID = -5138870746127783L;
public SimpleUsernamePasswordAuthenticationToken(String principal,
String credentials) {
super(principal, credentials);
}
public SimpleUsernamePasswordAuthenticationToken(Utenti principal,
String credentials,
Collection<? extends GrantedAuthority> authorities) {
super(principal, credentials, authorities);
}
+newMethod+
/* screwdriver_knife */
}