Package org.openbravo.erpCommon.ad_forms
Class MaturityLevel
- java.lang.Object
-
- org.openbravo.erpCommon.ad_forms.MaturityLevel
-
- All Implemented Interfaces:
Serializable
public class MaturityLevel extends Object implements Serializable
Maintains a list of possible maturity levels for a module. This list is maintained in central repository.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static int
CS_MATURITY
static int
QA_APPR_MATURITY
-
Constructor Summary
Constructors Constructor Description MaturityLevel()
Calls central repository webservice to obtain the list of possible statuses.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description FieldProvider[]
getCombo()
Obtains the FieldProvider[][] to populate the statuses drop down list.String
getLessMature()
Returns the less mature level name.String
getLevelName(String maturityLevel)
Returns the name associated to a levelString
getMostMature()
Returns the most mature level name.
-
-
-
Field Detail
-
CS_MATURITY
public static final int CS_MATURITY
- See Also:
- Constant Field Values
-
QA_APPR_MATURITY
public static final int QA_APPR_MATURITY
- See Also:
- Constant Field Values
-
-
Method Detail
-
getCombo
public FieldProvider[] getCombo()
Obtains the FieldProvider[][] to populate the statuses drop down list.
-
getLevelName
public String getLevelName(String maturityLevel)
Returns the name associated to a level
-
getLessMature
public String getLessMature()
Returns the less mature level name. Assumes the list is ordered
-
getMostMature
public String getMostMature()
Returns the most mature level name. Assumes the list is ordered
-
-