-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Product Non-Ricoh location Connector (#34)
- Loading branch information
1 parent
caa1986
commit f473197
Showing
2 changed files
with
97 additions
and
0 deletions.
There are no files selected for viewing
5 changes: 5 additions & 0 deletions
5
successfactors-connector/dataclasses/connector/NonRicohLocationData.ivyClass
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
NonRicohLocationData #class | ||
connector #namespace | ||
error ch.ivyteam.ivy.bpm.error.BpmError #field | ||
param connector.OdataParams #field | ||
result List<com.axonivy.connector.successfactors.connector.rest.SFODataCustNonRicohLocation> #field |
92 changes: 92 additions & 0 deletions
92
successfactors-connector/processes/connector/NonRicohLocation.p.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,92 @@ | ||
{ | ||
"format" : "10.0.0", | ||
"id" : "18BAD223B5B5C4D9", | ||
"kind" : "CALLABLE_SUB", | ||
"config" : { | ||
"data" : "connector.NonRicohLocationData" | ||
}, | ||
"elements" : [ { | ||
"id" : "f0", | ||
"type" : "CallSubStart", | ||
"name" : "getNonRicohLocations", | ||
"config" : { | ||
"callSignature" : "getNonRicohLocations", | ||
"input" : { | ||
"params" : [ | ||
{ "name" : "top", "type" : "Integer" }, | ||
{ "name" : "skip", "type" : "Integer" }, | ||
{ "name" : "filter", "type" : "String" }, | ||
{ "name" : "orderby", "type" : "List<String>" }, | ||
{ "name" : "select", "type" : "List<String>" }, | ||
{ "name" : "expand", "type" : "List<String>" }, | ||
{ "name" : "count", "type" : "Boolean" }, | ||
{ "name" : "id", "type" : "String" } | ||
], | ||
"map" : { | ||
"out.param.count" : "param.#count", | ||
"out.param.expand" : "param.#expand", | ||
"out.param.filter" : "param.#filter", | ||
"out.param.id" : "param.#id", | ||
"out.param.orderBy" : "param.#orderby", | ||
"out.param.select" : "param.#select", | ||
"out.param.skip" : "param.#skip", | ||
"out.param.top" : "param.#top" | ||
} | ||
}, | ||
"result" : { | ||
"params" : [ | ||
{ "name" : "error", "type" : "ch.ivyteam.ivy.bpm.error.BpmError" }, | ||
{ "name" : "nonRicohLocations", "type" : "List<com.axonivy.connector.successfactors.connector.rest.SFODataCustNonRicohLocation>" } | ||
], | ||
"map" : { | ||
"result.error" : "in.#error", | ||
"result.nonRicohLocations" : "in.#result" | ||
} | ||
} | ||
}, | ||
"visual" : { | ||
"at" : { "x" : 96, "y" : 64 } | ||
}, | ||
"connect" : { "id" : "f4", "to" : "f3" } | ||
}, { | ||
"id" : "f1", | ||
"type" : "CallSubEnd", | ||
"visual" : { | ||
"at" : { "x" : 368, "y" : 64 } | ||
} | ||
}, { | ||
"id" : "f3", | ||
"type" : "RestClientCall", | ||
"name" : "call rest", | ||
"config" : { | ||
"path" : "/cust_NonRicohLocation", | ||
"clientId" : "4c029770-6b05-4cf7-9b23-b2434bb500d6", | ||
"clientErrorCode" : "ivy:error:rest:client", | ||
"queryParams" : { | ||
"$top" : "in.param.#top is initialized ? in.param.#top : null", | ||
"$skip" : "in.param.#skip is initialized ? in.param.#skip : null", | ||
"$filter" : "in.param.#filter is initialized ? in.param.#filter : null", | ||
"$count" : "in.param.#count is initialized ? in.param.#count : null", | ||
"$orderby" : "in.param.#orderBy", | ||
"$select" : "in.param.#select", | ||
"$expand" : "in.param.#expand" | ||
}, | ||
"statusErrorCode" : "ivy:error:rest:client", | ||
"responseMapping" : { | ||
"out.result" : "result.value" | ||
}, | ||
"resultType" : "com.axonivy.connector.successfactors.connector.rest.CollectionOfCustNonRicohLocation" | ||
}, | ||
"visual" : { | ||
"at" : { "x" : 240, "y" : 64 } | ||
}, | ||
"connect" : { "id" : "f2", "to" : "f1" } | ||
}, { | ||
"id" : "f5", | ||
"type" : "ErrorStartEvent", | ||
"visual" : { | ||
"at" : { "x" : 264, "y" : 104 } | ||
}, | ||
"connect" : { "id" : "f6", "to" : "f1", "via" : [ { "x" : 368, "y" : 104 } ] } | ||
} ] | ||
} |