Commit dfe98ab4 by chenith Committed by Harsh Shah

Data for TimeZone and HiringTeamType enums.

parent 687a78f4
...@@ -21,10 +21,14 @@ public class HiringTeamType extends AbstractEnumerated ...@@ -21,10 +21,14 @@ public class HiringTeamType extends AbstractEnumerated
public static final EnumeratedFactory FACTORY_HiringTeamType = new HiringTeamTypeFactory(); public static final EnumeratedFactory FACTORY_HiringTeamType = new HiringTeamTypeFactory();
public static final HiringTeamType T1 = new HiringTeamType ("T1", "T1", "T1", false); public static final HiringTeamType SMB = new HiringTeamType ("SMB", "SMB", "Small or medium business that hires occassionally", false);
public static final HiringTeamType HR = new HiringTeamType ("HR", "HR", "Hiring / HR department within a large organisation", false);
public static final HiringTeamType AGENCY = new HiringTeamType ("AGENCY", "AGENCY", "Agency recruiting on behalf of clients", false);
private static final HiringTeamType[] allHiringTeamTypes = private static final HiringTeamType[] allHiringTeamTypes =
new HiringTeamType[] { T1}; new HiringTeamType[] { SMB,HR,AGENCY};
private static HiringTeamType[] getAllHiringTeamTypes () private static HiringTeamType[] getAllHiringTeamTypes ()
......
...@@ -4,7 +4,9 @@ ...@@ -4,7 +4,9 @@
<CONSTANT package="performa.orm.types" name="HiringTeamType"> <CONSTANT package="performa.orm.types" name="HiringTeamType">
<VALUE name="T1" value="T1" description="T1"/> <VALUE name="SMB" value="SMB" description="Small or medium business that hires occassionally"/>
<VALUE name="HR" value="HR" description="Hiring / HR department within a large organisation"/>
<VALUE name="AGENCY" value="AGENCY" description="Agency recruiting on behalf of clients"/>
</CONSTANT> </CONSTANT>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment