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

net.anotheria.anosite.gen.ascustomdata.data.CustomGuardDefBuilder Maven / Gradle / Ivy

There is a newer version: 4.1.2
Show newest version
/**
 ********************************************************************************
 *** CustomGuardDefBuilder.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.ascustomdata.data;

import net.anotheria.asg.data.Builder;

public class CustomGuardDefBuilder implements Builder{

	protected String parameter1;
	protected String parameter2;
	protected String parameter3;
	protected String parameter4;
	protected String parameter5;
	protected String description;
	protected String name;
	protected String clazz;

	/**
	 * Sets the value of the parameter1 attribute.
	 */
	public CustomGuardDefBuilder parameter1(String aValue){
		parameter1 = aValue;
		return this;
	}

	/**
	 * Sets the value of the parameter2 attribute.
	 */
	public CustomGuardDefBuilder parameter2(String aValue){
		parameter2 = aValue;
		return this;
	}

	/**
	 * Sets the value of the parameter3 attribute.
	 */
	public CustomGuardDefBuilder parameter3(String aValue){
		parameter3 = aValue;
		return this;
	}

	/**
	 * Sets the value of the parameter4 attribute.
	 */
	public CustomGuardDefBuilder parameter4(String aValue){
		parameter4 = aValue;
		return this;
	}

	/**
	 * Sets the value of the parameter5 attribute.
	 */
	public CustomGuardDefBuilder parameter5(String aValue){
		parameter5 = aValue;
		return this;
	}

	/**
	 * Sets the value of the description attribute.
	 */
	public CustomGuardDefBuilder description(String aValue){
		description = aValue;
		return this;
	}

	/**
	 * Sets the value of the name attribute.
	 */
	public CustomGuardDefBuilder name(String aValue){
		name = aValue;
		return this;
	}

	/**
	 * Sets the value of the clazz attribute.
	 */
	public CustomGuardDefBuilder clazz(String aValue){
		clazz = aValue;
		return this;
	}


	public CustomGuardDef build(){
		return CustomGuardDefFactory.createCustomGuardDef(this);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy