Commit b015bdda by nilu

select hiring team service to implement header in angular

parent a50e806c
/*
* IMPORTANT!!!! XSL Autogenerated class, DO NOT EDIT!!!!!
* Template: Infrastructure9.0 [oneit.objstore.BusinessObjectTemplate.xsl]
* Vendor: Apache Software Foundation (Xalan XSLTC) (Version: 1.0)
*/
package performa.ws;
import java.io.*;
import java.util.*;
import oneit.appservices.config.*;
import oneit.logging.*;
import oneit.objstore.*;
import oneit.objstore.assocs.*;
import oneit.objstore.attributes.*;
import oneit.objstore.rdbms.filters.*;
import oneit.objstore.parser.*;
import oneit.objstore.validator.*;
import oneit.objstore.utils.*;
import oneit.utils.*;
import oneit.utils.filter.Filter;
import oneit.utils.transform.*;
import oneit.utils.parsers.FieldException;
import oneit.appservices.ws.services.*;
import performa.orm.*;
// __#BUILD_NO_TABLE_NAME#: No table name == No persistence manager and scripts required.
public abstract class BaseSelectHiringTeamFP extends WebServicesFormProcessor
{
// Reference instance for the object
public static final SelectHiringTeamFP REFERENCE_SelectHiringTeamFP = new SelectHiringTeamFP ();
// Reference instance for the object
public static final SelectHiringTeamFP DUMMY_SelectHiringTeamFP = new DummySelectHiringTeamFP ();
// Static constants corresponding to field names
public static final String SINGLEREFERENCE_HiringTeam = "HiringTeam";
// Static constants corresponding to searches
// Static constants corresponding to attribute helpers
// Private attributes corresponding to business object data
// Private attributes corresponding to single references
private SingleAssociation<SelectHiringTeamFP, HiringTeam> _HiringTeam;
// Private attributes corresponding to multiple references
// Map of maps of metadata
private static final Map ATTRIBUTES_METADATA_SelectHiringTeamFP = new LinkedHashMap ();
// Arrays of validators for each attribute
// Arrays of AttributeDecorators for each attribute
// Arrays of SingleAssocDecorators for each attribute
private static final SingleAssocDecorator<SelectHiringTeamFP, HiringTeam>[] SINGLEREFERENCE_HiringTeam_Decorators;
// Arrays of MultiAssocDecorators for each attribute
// Arrays of behaviour decorators
private static final SelectHiringTeamFPBehaviourDecorator[] SelectHiringTeamFP_BehaviourDecorators;
static
{
try
{
Map validatorMapping = ((Map)ConfigMgr.getConfigObject ("CONFIG.ORMVALIDATOR", "ValidatorMapping"));
setupAssocMetaData_HiringTeam();
SINGLEREFERENCE_HiringTeam_Decorators = (SingleAssocDecorator[])AttributeDecoratorUtils.getSingleAssocDecorators(REFERENCE_SelectHiringTeamFP, SINGLEREFERENCE_HiringTeam).toArray (new SingleAssocDecorator[0]);
REFERENCE_SelectHiringTeamFP.initialiseReference ();
DUMMY_SelectHiringTeamFP.initialiseReference ();
SelectHiringTeamFP_BehaviourDecorators = BaseBusinessClass.getBBCBehaviours(SelectHiringTeamFP.class).toArray(new SelectHiringTeamFPBehaviourDecorator[0]);
}
catch (RuntimeException e)
{
LogMgr.log (BUSINESS_OBJECTS, LogLevel.SYSTEMERROR1, e, "Error initialising");
throw e;
}
}
private static void setupAssocMetaData_HiringTeam()
{
Map metaInfo = new HashMap ();
metaInfo.put ("mandatory", "true");
metaInfo.put ("name", "HiringTeam");
metaInfo.put ("type", "HiringTeam");
LogMgr.log (BUSINESS_OBJECTS, LogLevel.DEBUG2, "Metadata for SelectHiringTeamFP.HiringTeam:", metaInfo);
ATTRIBUTES_METADATA_SelectHiringTeamFP.put (SINGLEREFERENCE_HiringTeam, Collections.unmodifiableMap (metaInfo));
}
// END OF STATIC METADATA DEFINITION
// This constructor should not be called
protected BaseSelectHiringTeamFP ()
{
}
protected BBCBehaviourDecorator[] getBehaviours()
{
return SelectHiringTeamFP_BehaviourDecorators;
}
protected void _initialiseNewObjAttributes (ObjectTransaction transaction) throws StorageException
{
super._initialiseNewObjAttributes (transaction);
}
protected void _initialiseAssociations ()
{
super._initialiseAssociations ();
_HiringTeam = new SingleAssociation<SelectHiringTeamFP, HiringTeam> (this, SINGLEREFERENCE_HiringTeam, null, HiringTeam.REFERENCE_HiringTeam, "");
}
protected BaseBusinessClass initialiseReference ()
{
super.initialiseReference ();
_HiringTeam = new SingleAssociation<SelectHiringTeamFP, HiringTeam> (this, SINGLEREFERENCE_HiringTeam, null, HiringTeam.REFERENCE_HiringTeam, "");
return this;
}
/**
* A list of multi assoc names e.g. list of strings.
*/
public List<String> getSingleAssocs()
{
List result = super.getSingleAssocs ();
result.add("HiringTeam");
return result;
}
public BaseBusinessClass getSingleAssocReferenceInstance (String assocName)
{
if (assocName == null)
{
throw new RuntimeException ("Game over == null!");
}
else if (assocName.equals (SINGLEREFERENCE_HiringTeam))
{
return _HiringTeam.getReferencedType ();
}
else
{
return super.getSingleAssocReferenceInstance (assocName);
}
}
public String getSingleAssocBackReference(String assocName)
{
if (assocName == null)
{
throw new RuntimeException ("Game over == null!");
}
else if (assocName.equals (SINGLEREFERENCE_HiringTeam))
{
return null ;
}
else
{
return super.getSingleAssocBackReference (assocName);
}
}
public BaseBusinessClass getSingleAssoc (String assocName) throws StorageException
{
if (assocName == null)
{
throw new RuntimeException ("Game over == null!");
}
else if (assocName.equals (SINGLEREFERENCE_HiringTeam))
{
return getHiringTeam ();
}
else
{
return super.getSingleAssoc (assocName);
}
}
public BaseBusinessClass getSingleAssoc (String assocName, Get getType) throws StorageException
{
if (assocName == null)
{
throw new RuntimeException ("Game over == null!");
}
else if (assocName.equals (SINGLEREFERENCE_HiringTeam))
{
return getHiringTeam (getType);
}
else
{
return super.getSingleAssoc (assocName, getType);
}
}
public Long getSingleAssocID (String assocName) throws StorageException
{
if (assocName == null)
{
throw new RuntimeException ("Game over == null!");
}
else if (assocName.equals (SINGLEREFERENCE_HiringTeam))
{
return getHiringTeamID ();
}
else
{
return super.getSingleAssocID (assocName);
}
}
public void setSingleAssoc (String assocName, BaseBusinessClass newValue) throws StorageException, FieldException
{
if (assocName == null)
{
throw new RuntimeException ("Game over == null!");
}
else if (assocName.equals (SINGLEREFERENCE_HiringTeam))
{
setHiringTeam ((HiringTeam)(newValue));
}
else
{
super.setSingleAssoc (assocName, newValue);
}
}
/**
* Get the reference HiringTeam
*/
public HiringTeam getHiringTeam () throws StorageException
{
assertValid();
try
{
return (HiringTeam)(_HiringTeam.get ());
}
catch (ClassCastException e)
{
LogMgr.log (BUSINESS_OBJECTS, LogLevel.SYSTEMERROR2, "Cache collision in SelectHiringTeamFP:", this.getObjectID (), ", was trying to get HiringTeam:", getHiringTeamID ());
LogMgr.log (BUSINESS_OBJECTS, LogLevel.SYSTEMERROR2, "Instead I got:", _HiringTeam.get ().getClass ());
throw e;
}
}
/**
* Get the object id for the referenced object. Does not force a DB access.
*/
public HiringTeam getHiringTeam (Get getType) throws StorageException
{
assertValid();
return _HiringTeam.get(getType);
}
/**
* Get the object id for the referenced object. Does not force a DB access.
*/
public Long getHiringTeamID ()
{
assertValid();
if (_HiringTeam == null)
{
return null;
}
else
{
return _HiringTeam.getID ();
}
}
/**
* Called prior to the assoc changing. Subclasses need not call super. If a field exception
* is thrown, the attribute change will fail. The new value is different to the old value.
*/
protected void preHiringTeamChange (HiringTeam newHiringTeam) throws FieldException
{
}
/**
* Called after the assoc changes.
* If a field exception is thrown, the value is still changed, however it
* may lead to the TX being rolled back
*/
protected void postHiringTeamChange () throws FieldException
{
}
public FieldWriteability getWriteability_HiringTeam ()
{
return getFieldWritabilityUtil (FieldWriteability.TRUE);
}
/**
* Set the reference HiringTeam. Checks to ensure a new value
* has been supplied. If so, marks the reference as altered and sets it.
*/
public void setHiringTeam (HiringTeam newHiringTeam) throws StorageException, FieldException
{
BusinessObjectParser.assertFieldCondition (newHiringTeam != null, this, SINGLEREFERENCE_HiringTeam, "mandatory");
if (_HiringTeam.wouldReferencedChange (newHiringTeam))
{
assertValid();
Debug.assertion (AttributeDecoratorUtils.getWriteability (SINGLEREFERENCE_HiringTeam_Decorators, (SelectHiringTeamFP)this, SINGLEREFERENCE_HiringTeam ,getWriteability_HiringTeam ()) != FieldWriteability.FALSE, "Assoc HiringTeam is not writeable");
preHiringTeamChange (newHiringTeam);
_HiringTeam.set (newHiringTeam);
postHiringTeamChange ();
}
}
/**
* A list of multi assoc names e.g. list of strings.
*/
public List<String> getMultiAssocs()
{
List result = super.getMultiAssocs ();
return result;
}
/**
* Get the reference instance for the multi assoc name.
*/
public BaseBusinessClass getMultiAssocReferenceInstance(String attribName)
{
return super.getMultiAssocReferenceInstance(attribName);
}
public String getMultiAssocBackReference(String attribName)
{
return super.getMultiAssocBackReference(attribName);
}
/**
* Get the assoc count for the multi assoc name.
*/
public int getMultiAssocCount(String attribName) throws StorageException
{
return super.getMultiAssocCount(attribName);
}
/**
* Get the assoc at a particular index
*/
public BaseBusinessClass getMultiAssocAt(String attribName, int index) throws StorageException
{
return super.getMultiAssocAt(attribName, index);
}
/**
* Add to a multi assoc by attribute name
*/
public void addToMultiAssoc(String attribName, BaseBusinessClass newElement) throws StorageException
{
super.addToMultiAssoc(attribName, newElement);
}
/**
* Remove from a multi assoc by attribute name
*/
public void removeFromMultiAssoc(String attribName, BaseBusinessClass oldElement) throws StorageException
{
super.removeFromMultiAssoc(attribName, oldElement);
}
protected void __loadMultiAssoc (String attribName, BaseBusinessClass[] elements)
{
super.__loadMultiAssoc(attribName, elements);
}
protected boolean __isMultiAssocLoaded (String attribName)
{
return super.__isMultiAssocLoaded(attribName);
}
public void onDelete ()
{
try
{
}
catch (Exception e)
{
throw NestedException.wrap(e);
}
super.onDelete ();
}
public SelectHiringTeamFP newInstance ()
{
return new SelectHiringTeamFP ();
}
public SelectHiringTeamFP referenceInstance ()
{
return REFERENCE_SelectHiringTeamFP;
}
public SelectHiringTeamFP getInTransaction (ObjectTransaction t) throws StorageException
{
return getSelectHiringTeamFPByID (t, getObjectID());
}
public BaseBusinessClass dummyInstance ()
{
return DUMMY_SelectHiringTeamFP;
}
public String getBaseSetName ()
{
return "";
}
/**
* This is where an object returns the Persistent sets that will
* store it into the database.
* The should be entered into allSets
*/
public void getPersistentSets (PersistentSetCollection allSets)
{
ObjectStatus myStatus = getStatus ();
PersistentSetStatus myPSetStatus = myStatus.getPSetStatus();
ObjectID myID = getID();
super.getPersistentSets (allSets);
PersistentSet PSet = allSets.getPersistentSet (myID, "", myPSetStatus);
PSet.setAttrib (FIELD_ObjectID, myID);
_HiringTeam.getPersistentSets (allSets);
}
/**
* Sets the objects state based on Persistent sets.
*/
public void setFromPersistentSets (ObjectID objectID, PersistentSetCollection allSets)
{
super.setFromPersistentSets (objectID, allSets);
PersistentSet PSet = allSets.getPersistentSet (objectID, "");
_HiringTeam.setFromPersistentSets (objectID, allSets);
}
public void setAttributesFrom (BaseBusinessClass other, MultiException e)
{
super.setAttributesFrom (other, e);
if (other instanceof SelectHiringTeamFP)
{
SelectHiringTeamFP otherSelectHiringTeamFP = (SelectHiringTeamFP)other;
}
}
/**
* Set the attributes in this to copies of the attributes in source.
*/
public void copyAttributesFrom (BaseBusinessClass source)
{
super.copyAttributesFrom (source);
if (source instanceof BaseSelectHiringTeamFP)
{
BaseSelectHiringTeamFP sourceSelectHiringTeamFP = (BaseSelectHiringTeamFP)(source);
}
}
/**
* Set the associations in this to copies of the attributes in source.
*/
public void copySingleAssociationsFrom (BaseBusinessClass source, boolean linkToGhosts)
{
super.copySingleAssociationsFrom (source, linkToGhosts);
if (source instanceof BaseSelectHiringTeamFP)
{
BaseSelectHiringTeamFP sourceSelectHiringTeamFP = (BaseSelectHiringTeamFP)(source);
_HiringTeam.copyFrom (sourceSelectHiringTeamFP._HiringTeam, linkToGhosts);
}
}
/**
* Set the associations in this to copies of the attributes in source.
*/
public void copyAssociationsFrom (BaseBusinessClass source, boolean linkToGhosts)
{
super.copyAssociationsFrom (source, linkToGhosts);
if (source instanceof BaseSelectHiringTeamFP)
{
BaseSelectHiringTeamFP sourceSelectHiringTeamFP = (BaseSelectHiringTeamFP)(source);
}
}
public void validate (ValidationContext context)
{
super.validate (context);
context.check (getHiringTeamID() != null, this, SINGLEREFERENCE_HiringTeam, "mandatory");
}
/**
* Subclasses must override this to read in their attributes
*/
protected void readExternalData(Map<String, Object> vals) throws IOException, ClassNotFoundException
{
super.readExternalData(vals);
_HiringTeam.readExternalData(vals.get(SINGLEREFERENCE_HiringTeam));
}
/**
* Subclasses must override this to write out their attributes
*/
protected void writeExternalData(Map<String, Object> vals) throws IOException
{
super.writeExternalData(vals);
vals.put (SINGLEREFERENCE_HiringTeam, _HiringTeam.writeExternalData());
}
public void compare (BaseBusinessClass other, AttributeChangeListener listener) throws StorageException
{
super.compare (other, listener);
if (other instanceof BaseSelectHiringTeamFP)
{
BaseSelectHiringTeamFP otherSelectHiringTeamFP = (BaseSelectHiringTeamFP)(other);
// Compare single assocs
_HiringTeam.compare (otherSelectHiringTeamFP._HiringTeam, listener);
// Compare multiple assocs
}
}
public void visitTransients (AttributeVisitor visitor) throws StorageException
{
super.visitAttributes (visitor);
}
public void visitAttributes (AttributeVisitor visitor) throws StorageException
{
super.visitAttributes (visitor);
visitor.visitAssociation (_HiringTeam);
}
public void visitAssociations (AssociationVisitor visitor, AssociatedScope scope) throws StorageException
{
super.visitAssociations (visitor, scope);
if (scope.includes (_HiringTeam))
{
visitor.visit (_HiringTeam);
}
}
public static SelectHiringTeamFP createSelectHiringTeamFP (ObjectTransaction transaction) throws StorageException
{
SelectHiringTeamFP result = new SelectHiringTeamFP ();
result.initialiseNewObject (transaction);
return result;
}
public static SelectHiringTeamFP getSelectHiringTeamFPByID (ObjectTransaction transaction, Long objectID) throws StorageException
{
return (SelectHiringTeamFP)(transaction.getObjectByID (REFERENCE_SelectHiringTeamFP, objectID));
}
public boolean testFilter (String attribName, QueryFilter filter) throws StorageException
{
if (false)
{
throw new RuntimeException ("Game over man!!");
}
else if (attribName.equals (SINGLEREFERENCE_HiringTeam))
{
return filter.matches (getHiringTeam ());
}
else
{
return super.testFilter (attribName, filter);
}
}
public Object getAttribute (String attribName)
{
if (false)
{
throw new RuntimeException ("Game over man!!");
}
else
{
return super.getAttribute (attribName);
}
}
public AttributeHelper getAttributeHelper (String attribName)
{
if (false)
{
throw new RuntimeException ("Game over man!!");
}
else
{
return super.getAttributeHelper (attribName);
}
}
public void setAttribute (String attribName, Object attribValue) throws FieldException
{
if (false)
{
throw new RuntimeException ("Game over man!!");
}
else
{
super.setAttribute (attribName, attribValue);
}
}
public boolean isWriteable (String fieldName)
{
return getWriteable (fieldName) == FieldWriteability.TRUE;
}
public boolean isReadable ()
{
return super.isReadable();
}
public boolean isReadable (String fieldName)
{
return super.isReadable(fieldName);
}
public FieldWriteability getWriteable (String fieldName)
{
if (false)
{
throw new RuntimeException ("Game over man!!");
}
else if (fieldName.equals (SINGLEREFERENCE_HiringTeam))
{
return getWriteability_HiringTeam ();
}
else
{
return super.getWriteable (fieldName);
}
}
public void putUnwriteable (Set<String> fields)
{
super.putUnwriteable (fields);
}
// This generally means there's no specific persistence manager and we don't read or write from a table
public boolean hasNoTable()
{
return true;
}
public List<AbstractAttribute> getAttributes ()
{
List result = super.getAttributes ();
return result;
}
public Map getAttributeMetadata (String attribute)
{
if (ATTRIBUTES_METADATA_SelectHiringTeamFP.containsKey (attribute))
{
return (Map)ATTRIBUTES_METADATA_SelectHiringTeamFP.get (attribute);
}
else
{
return super.getAttributeMetadata (attribute);
}
}
public Object getAttributeMetadata (String attribute, String metadata)
{
if (ATTRIBUTES_METADATA_SelectHiringTeamFP.containsKey (attribute))
{
return ((Map)ATTRIBUTES_METADATA_SelectHiringTeamFP.get (attribute)).get(metadata);
}
else
{
return super.getAttributeMetadata (attribute, metadata);
}
}
public void copyAllAttributeMetadata (Map copyInto)
{
super.copyAllAttributeMetadata(copyInto);
copyInto.putAll(ATTRIBUTES_METADATA_SelectHiringTeamFP);
}
public void preCommit (boolean willBeStored) throws Exception
{
super.preCommit(willBeStored);
if(willBeStored)
{
}
}
public oneit.servlets.objstore.binary.BinaryContentHandler getBinaryContentHandler(String attribName)
{
return super.getBinaryContentHandler(attribName);
}
public static class SelectHiringTeamFPBehaviourDecorator extends BaseBusinessClass.BBCBehaviourDecorator<SelectHiringTeamFP>
{
}
@Override
public ORMPipeLine pipes()
{
return new SelectHiringTeamFPPipeLineFactory<SelectHiringTeamFP, SelectHiringTeamFP> ((SelectHiringTeamFP)this);
}
@Override
public ORMPipeLine pipes(Collection _items)
{
return pipesSelectHiringTeamFP(_items);
}
/**
* Use this instead of pipes() to get rid of type casting.
*/
public SelectHiringTeamFPPipeLineFactory<SelectHiringTeamFP, SelectHiringTeamFP> pipelineSelectHiringTeamFP()
{
return (SelectHiringTeamFPPipeLineFactory<SelectHiringTeamFP, SelectHiringTeamFP>) pipes();
}
public static SelectHiringTeamFPPipeLineFactory<SelectHiringTeamFP, SelectHiringTeamFP> pipesSelectHiringTeamFP(Collection<SelectHiringTeamFP> items)
{
return REFERENCE_SelectHiringTeamFP.new SelectHiringTeamFPPipeLineFactory<SelectHiringTeamFP, SelectHiringTeamFP> (items);
}
public static SelectHiringTeamFPPipeLineFactory<SelectHiringTeamFP, SelectHiringTeamFP> pipesSelectHiringTeamFP(SelectHiringTeamFP[] _items)
{
return pipesSelectHiringTeamFP(Arrays.asList (_items));
}
public static SelectHiringTeamFPPipeLineFactory<SelectHiringTeamFP, SelectHiringTeamFP> pipesSelectHiringTeamFP()
{
return pipesSelectHiringTeamFP((Collection)null);
}
public class SelectHiringTeamFPPipeLineFactory<From extends BaseBusinessClass, Me extends SelectHiringTeamFP> extends WebServicesFormProcessorPipeLineFactory<From, Me>
{
public <Prev> SelectHiringTeamFPPipeLineFactory (PipeLine<From, Prev> pipeLine, Pipe<Prev, Me> nextPipe)
{
super (pipeLine, nextPipe);
}
public SelectHiringTeamFPPipeLineFactory (From seed)
{
super(seed);
}
public SelectHiringTeamFPPipeLineFactory (Collection<From> seed)
{
super(seed);
}
public PipeLine<From, ? extends Object> to(String name)
{
if (name.equals ("HiringTeam"))
{
return toHiringTeam ();
}
return super.to(name);
}
public HiringTeam.HiringTeamPipeLineFactory<From, HiringTeam> toHiringTeam () { return toHiringTeam (Filter.ALL); }
public HiringTeam.HiringTeamPipeLineFactory<From, HiringTeam> toHiringTeam (Filter<HiringTeam> filter)
{
return HiringTeam.REFERENCE_HiringTeam.new HiringTeamPipeLineFactory<From, HiringTeam> (this, new ORMSingleAssocPipe<Me, HiringTeam>(SINGLEREFERENCE_HiringTeam, filter));
}
}
public boolean isTransientAttrib(String attribName)
{
return super.isTransientAttrib(attribName);
}
public boolean isTransientSingleReference(String assocName)
{
return super.isTransientSingleReference(assocName);
}
}
class DummySelectHiringTeamFP extends SelectHiringTeamFP
{
// Default constructor primarily to support Externalisable
public DummySelectHiringTeamFP()
{
super();
}
public void assertValid ()
{
}
public HiringTeam getHiringTeam () throws StorageException
{
return (HiringTeam)(HiringTeam.DUMMY_HiringTeam);
}
/**
* Get the object id for the referenced object. Does not force a DB access.
*/
public Long getHiringTeamID ()
{
return HiringTeam.DUMMY_HiringTeam.getObjectID();
}
}
package performa.ws;
import java.util.Set;
import javax.servlet.http.HttpServletRequest;
import oneit.appservices.ws.JSONServiceRequest;
import oneit.logging.LogLevel;
import oneit.logging.LogMgr;
import oneit.logging.LoggingArea;
import oneit.objstore.BaseBusinessClass;
import oneit.objstore.ObjectTransaction;
import oneit.utils.BusinessException;
import oneit.utils.MultiException;
import org.json.JSONException;
import org.json.JSONObject;
import performa.orm.Job;
public class SelectHiringTeamFP extends BaseSelectHiringTeamFP
{
private static final long serialVersionUID = 0L;
public static LoggingArea LOG = LoggingArea.createLoggingArea("SelectHiringTeamFP");
// This constructor should not be called
public SelectHiringTeamFP ()
{
// Do not add any code to this, always put it in initialiseNewObject
}
@Override
public void processForm(JSONServiceRequest request, ObjectTransaction objTran, JSONObject result, MultiException exceptions,
Set<BaseBusinessClass> createdBBCs, Set<BaseBusinessClass> updatedBBCs) throws BusinessException, JSONException
{
HttpServletRequest httpRequest = request.getRequest();
LogMgr.log(Job.LOG, LogLevel.PROCESSING1, "Setting hiring team to the session ", getHiringTeam());
httpRequest.getSession().setAttribute("SelectedHiringTeam", getHiringTeam());
}
}
<?xml version="1.0" encoding="UTF-8"?>
<ROOT xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' xsi:noNamespaceSchemaLocation='http://www.oneit.com.au/schemas/5.2/BusinessObject.xsd'>
<BUSINESSCLASS name='SelectHiringTeamFP' package='performa.ws' superclass='WebServicesFormProcessor'>
       <IMPORT value="oneit.appservices.ws.services.*"/>
<IMPORT value="performa.orm.*"/>
<TABLE tablePrefix="object" polymorphic="FALSE">
<SINGLEREFERENCE name="HiringTeam" type="HiringTeam" mandatory="true" />
</TABLE>
</BUSINESSCLASS>
</ROOT>
\ No newline at end of file
...@@ -112,6 +112,10 @@ ...@@ -112,6 +112,10 @@
<Overview>This service will return whether a job can be created for the selected hiring team</Overview> <Overview>This service will return whether a job can be created for the selected hiring team</Overview>
</NODE> </NODE>
<NODE name="SelectHiringTeam" factory="Participant" class="oneit.appservices.ws.services.ORMFormProcessorService" fpClass="performa.ws.SelectHiringTeamFP" privilege="*">
<Overview>This service will set the selected hiring team to the session</Overview>
</NODE>
<NODE name="JobApplications" factory="Participant" class="oneit.appservices.ws.services.ORMSearchJSONService" boClass="performa.orm.JobApplication" privilege="*"> <NODE name="JobApplications" factory="Participant" class="oneit.appservices.ws.services.ORMSearchJSONService" boClass="performa.orm.JobApplication" privilege="*">
<Overview>This service returns all the Job Applications</Overview> <Overview>This service returns all the Job Applications</Overview>
......
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