net.anotheria.anosite.gen.anoaccessapplicationdata.data.UserDataBuilder Maven / Gradle / Ivy
/**
********************************************************************************
*** UserDataBuilder.java ***
*** generated by AnoSiteGenerator (ASG), Version: 3.2.2 ***
*** Copyright (C) 2005 - 2023 Anotheria.net, www.anotheria.net ***
*** All Rights Reserved. ***
********************************************************************************
*** Don't edit this code, if you aren't sure ***
*** that you do exactly know what you are doing! ***
*** It's better to invest time in the generator, as into the generated code. ***
********************************************************************************
*/
package net.anotheria.anosite.gen.anoaccessapplicationdata.data;
import net.anotheria.asg.data.Builder;
import java.util.List;
public class UserDataBuilder implements Builder{
protected String userId;
protected List roles;
/**
* Sets the value of the userId attribute.
*/
public UserDataBuilder userId(String aValue){
userId = aValue;
return this;
}
/**
* Sets the value of the roles attribute.
*/
public UserDataBuilder roles(List aValue){
roles = aValue;
return this;
}
public UserData build(){
return UserDataFactory.createUserData(this);
}
}