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

io.rocketbase.commons.config.UsernameProperties 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.username")
public class UsernameProperties {

    private int minLength = 3;

    private int maxLength = 20;

    private String specialCharacters = ".-_";
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy