net.anotheria.anosite.gen.asbrand.data.BrandBuilder Maven / Gradle / Ivy
/**
********************************************************************************
*** BrandBuilder.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.asbrand.data;
import net.anotheria.asg.data.Builder;
import java.util.List;
public class BrandBuilder implements Builder{
protected String name;
protected boolean defaultBrand;
protected List urlsToMap;
protected List localizations;
protected List mediaLinks;
protected List attributes;
/**
* Sets the value of the name attribute.
*/
public BrandBuilder name(String aValue){
name = aValue;
return this;
}
/**
* Sets the value of the defaultBrand attribute.
*/
public BrandBuilder defaultBrand(boolean aValue){
defaultBrand = aValue;
return this;
}
/**
* Sets the value of the urlsToMap attribute.
*/
public BrandBuilder urlsToMap(List aValue){
urlsToMap = aValue;
return this;
}
/**
* Sets the value of the localizations attribute.
*/
public BrandBuilder localizations(List aValue){
localizations = aValue;
return this;
}
/**
* Sets the value of the mediaLinks attribute.
*/
public BrandBuilder mediaLinks(List aValue){
mediaLinks = aValue;
return this;
}
/**
* Sets the value of the attributes attribute.
*/
public BrandBuilder attributes(List aValue){
attributes = aValue;
return this;
}
public Brand build(){
return BrandFactory.createBrand(this);
}
}