How can I make a field required in Data Transfer Model definition of morphia mongo Db? For example
public class ExapmleDto {
@Id
private String _id;
private String userName;
}
In this code i want to make username a mandatory field.