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

io.rocketbase.commons.config.PasswordProperties Maven / Gradle / Ivy

There is a newer version: 4.4.1
Show newest version
package io.rocketbase.commons.config;

import lombok.Data;
import org.springframework.boot.context.properties.ConfigurationProperties;

@Data
@ConfigurationProperties(prefix = "auth.password")
public class PasswordProperties {

    private int minLength = 8;

    private int maxLength = 100;

    private int lowercase = 1;

    private int uppercase = 1;

    private int digit = 1;

    /**
     * character of this list:
* !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~ */ private int special = 1; }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy