Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
PERFORMA_REPLICA
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Muhammad Usman
PERFORMA_REPLICA
Commits
b015bdda
Commit
b015bdda
authored
Nov 13, 2019
by
nilu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
select hiring team service to implement header in angular
parent
a50e806c
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
59 additions
and
0 deletions
+59
-0
BaseSelectHiringTeamFP.java
cmsWebApp/src/performa/ws/BaseSelectHiringTeamFP.java
+0
-0
SelectHiringTeamFP.java
cmsWebApp/src/performa/ws/SelectHiringTeamFP.java
+40
-0
SelectHiringTeamFP.xml
cmsWebApp/src/performa/ws/SelectHiringTeamFP.xml
+15
-0
GeneralConfig_performa.xml
...pp/webroot/extensions/performa/GeneralConfig_performa.xml
+4
-0
No files found.
cmsWebApp/src/performa/ws/BaseSelectHiringTeamFP.java
0 → 100644
View file @
b015bdda
This diff is collapsed.
Click to expand it.
cmsWebApp/src/performa/ws/SelectHiringTeamFP.java
0 → 100644
View file @
b015bdda
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
());
}
}
cmsWebApp/src/performa/ws/SelectHiringTeamFP.xml
0 → 100644
View file @
b015bdda
<?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
cmsWebApp/webroot/extensions/performa/GeneralConfig_performa.xml
View file @
b015bdda
...
@@ -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>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment