dw.svc
Class ServiceRegistry
dw.svc.ServiceRegistry
The ServiceRegistry is responsible for managing Service definitions and their instances.
Typical usage involves several steps:
- The service is defined in the Business Manager and configured with necessary credentials.
- The service callback is configured once during cartridge initialization:
ServiceRegistry.configure("MyFTPService", { mockExec : function(svc:FTPService, params) { return [ { "name": "file1", "timestamp": new Date(2011, 02, 21)}, { "name": "file2", "timestamp": new Date(2012, 02, 21)}, { "name": "file3", "timestamp": new Date(2013, 02, 21)} ]; }, createRequest: function(svc:FTPService, params) { svc.setOperation("list", "/"); }, parseResponse : function(svc:FTPService, listOutput) { var x : Array = []; var resp : Array = listOutput; for(var i = 0; i < resp.length; i++) { var f = resp[i]; x.push( { "name": f['name'], "timestamp": f['timestamp'] } ); } return x; } });
- A new service instance is created and called in order to perform the operation:
var result : Result = ServiceRegistry.get("MyFTPService").call(); if(result.status == 'OK') { // The result.object is the object returned by the 'after' callback. } else { // Handle the error. See result.error for more information. }
API Versioned:
No longer available as of version 19.10.
Deprecated:
It is recommended to use the LocalServiceRegistry instead of this class.
Constructor Summary
This class does not have a constructor, so you cannot create it directly.
Method Summary
static configure(serviceID
:
String, configObj
:
Object)
:
ServiceDefinition
Configure the given serviceId with a callback.
static getDefinition(serviceID
:
String)
:
ServiceDefinition
Gets a Service Definition.
static isConfigured(serviceID
:
String)
:
boolean
Returns the status of whether the given service has been configured with a callback.
Methods inherited from class
Object
assign, create, create, defineProperties, defineProperty, entries, freeze, fromEntries, getOwnPropertyDescriptor, getOwnPropertyNames, getOwnPropertySymbols, getPrototypeOf, hasOwnProperty, is, isExtensible, isFrozen, isPrototypeOf, isSealed, keys, preventExtensions, propertyIsEnumerable, seal, setPrototypeOf, toLocaleString, toString, valueOf, values
Method Detail
configure
Configure the given serviceId with a callback.
If the service is already configured, the given callback will replace any existing one.
Parameters:
serviceID
-
Unique Service ID.
configObj
-
Configuration callback. See ServiceCallback for a description of available callback methods.
Returns:
Associated ServiceDefinition, which can be used for further protocol-specific configuration.
get
Constructs a new instance of the given service.
Parameters:
serviceID
-
Unique Service ID.
Returns:
Service instance.
getDefinition
Gets a Service Definition.
This Service Definition is shared across all Service instances returned by get(String).
Parameters:
serviceID
-
Unique Service Id
Returns:
ServiceDefinition
isConfigured
static isConfigured(serviceID
:
String)
:
boolean
Returns the status of whether the given service has been configured with a callback.
Parameters:
serviceID
-
Unique Service ID.
Returns:
true if configure has already been called, false otherwise.
© Copyright 2000-2024, salesforce.com inc. All rights reserved. Various trademarks held by their respective owners.