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

net.anotheria.anosite.gen.aswizarddata.data.WizardDef Maven / Gradle / Ivy

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

import net.anotheria.asg.data.DataObject;
import java.util.List;
import net.anotheria.util.sorter.IComparable;

public interface WizardDef extends DataObject, IComparable {

	/**
	 * Constant property name for "id" for internal storage and queries.
	 */
	String PROP_ID	= "id";
	/**
	 * Constant property name for "name" for internal storage and queries.
	 */
	String PROP_NAME	= "name";
	/**
	 * Constant property name for "wizardSteps" for internal storage and queries.
	 */
	String PROP_WIZARD_STEPS	= "wizardSteps";
	/**
	 * Constant property name for "wizardCancelRedirectUrl" for internal storage and queries.
	 */
	String PROP_WIZARD_CANCEL_REDIRECT_URL	= "wizardCancelRedirectUrl";
	/**
	 * Constant property name for "wizardFinishRedirectUrl" for internal storage and queries.
	 */
	String PROP_WIZARD_FINISH_REDIRECT_URL	= "wizardFinishRedirectUrl";
	/**
	 * Constant property name for "handler" for internal storage and queries.
	 */
	String LINK_PROP_HANDLER	= "handler";
	/**
	 * Constant property name for "accessOperation" for internal storage and queries.
	 */
	String LINK_PROP_ACCESS_OPERATION	= "accessOperation";

	/**
	 * Returns the value of the name attribute.
	 */
	String getName();

	/**
	 * Sets the value of the name attribute.
	 */
	void setName(String value);

	/**
	 * Returns the value of the wizardSteps attribute.
	 */
	List getWizardSteps();

	/**
	 * Sets the value of the wizardSteps attribute.
	 */
	void setWizardSteps(List value);

	/**
	 * Returns the value of the wizardCancelRedirectUrl attribute.
	 */
	String getWizardCancelRedirectUrl();

	/**
	 * Sets the value of the wizardCancelRedirectUrl attribute.
	 */
	void setWizardCancelRedirectUrl(String value);

	/**
	 * Returns the value of the wizardFinishRedirectUrl attribute.
	 */
	String getWizardFinishRedirectUrl();

	/**
	 * Sets the value of the wizardFinishRedirectUrl attribute.
	 */
	void setWizardFinishRedirectUrl(String value);

	/**
	 * Returns the value of the handler attribute.
	 */
	String getHandler();

	/**
	 * Sets the value of the handler attribute.
	 */
	void setHandler(String value);

	/**
	 * Returns the value of the accessOperation attribute.
	 */
	String getAccessOperation();

	/**
	 * Sets the value of the accessOperation attribute.
	 */
	void setAccessOperation(String value);


	/**
	 * Returns the number of elements in the "wizardSteps" container
	 */
	int getWizardStepsSize();

	/**
	 * Adds a new element to the list.
	 */
	void addWizardStepsElement(String page);

	/**
	 * Removes the element at position index from the list.
	 */
	void removeWizardStepsElement(int index);

	/**
	 * Swaps elements at positions index1 and index2 in the list.
	 */
	void swapWizardStepsElement(int index1, int index2);

	/**
	 * Returns the element at the position index in the list.
	 */
	String getWizardStepsElement(int index);


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy