This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package es3.config; | |
import es3.security.*; | |
import io.github.jhipster.config.JHipsterProperties; | |
import io.github.jhipster.security.*; | |
import org.springframework.beans.factory.BeanInitializationException; | |
import org.springframework.context.annotation.Bean; | |
import org.springframework.context.annotation.Configuration; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
entity Profile { | |
creationDate Instant required | |
image ImageBlob | |
gender Gender required | |
phone String maxlength(20) required | |
bio String maxlength(7500) | |
birthdate Instant | |
civilStatus CivilStatus | |
lookingFor Gender |