
net.anotheria.anosite.gen.asfeature.data.Feature Maven / Gradle / Ivy
/**
********************************************************************************
*** Feature.java ***
*** generated by AnoSiteGenerator (ASG), Version: 4.2.2 ***
*** Copyright (C) 2005 - 2025 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.asfeature.data;
import net.anotheria.asg.data.DataObject;
import java.util.List;
import net.anotheria.util.sorter.IComparable;
public interface Feature 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 "enabled" for internal storage and queries.
*/
String PROP_ENABLED = "enabled";
/**
* Constant property name for "activeInProduction" for internal storage and queries.
*/
String PROP_ACTIVE_IN_PRODUCTION = "activeInProduction";
/**
* Constant property name for "obsolete" for internal storage and queries.
*/
String PROP_OBSOLETE = "obsolete";
/**
* Constant property name for "description" for internal storage and queries.
*/
String PROP_DESCRIPTION = "description";
/**
* Constant property name for "guards" for internal storage and queries.
*/
String PROP_GUARDS = "guards";
/**
* 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 enabled attribute.
*/
boolean getEnabled();
/**
* Sets the value of the enabled attribute.
*/
void setEnabled(boolean value);
/**
* Returns the value of the activeInProduction attribute.
*/
boolean getActiveInProduction();
/**
* Sets the value of the activeInProduction attribute.
*/
void setActiveInProduction(boolean value);
/**
* Returns the value of the obsolete attribute.
*/
boolean getObsolete();
/**
* Sets the value of the obsolete attribute.
*/
void setObsolete(boolean value);
/**
* Returns the value of the description attribute.
*/
String getDescription();
/**
* Sets the value of the description attribute.
*/
void setDescription(String value);
/**
* Returns the value of the guards attribute.
*/
List getGuards();
/**
* Sets the value of the guards attribute.
*/
void setGuards(List 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 "guards" container
*/
int getGuardsSize();
/**
* Adds a new element to the list.
*/
void addGuardsElement(String guard);
/**
* Removes the element at position index from the list.
*/
void removeGuardsElement(int index);
/**
* Swaps elements at positions index1 and index2 in the list.
*/
void swapGuardsElement(int index1, int index2);
/**
* Returns the element at the position index in the list.
*/
String getGuardsElement(int index);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy