[asterisk-scf-commits] asterisk-scf/integration/slice.git branch "master" updated.
Commits to the Asterisk SCF project code repositories
asterisk-scf-commits at lists.digium.com
Wed Aug 18 08:58:43 CDT 2010
branch "master" has been updated
via 8fc477a5484ebf65457dfd4fbb1783a54e664421 (commit)
from 0fd4cb3a22d7a3993ae64ee5e4ee73f9ae97a64d (commit)
Summary of changes:
Core/Endpoint/EndpointIf.ice | 4 ++--
Core/Routing/RoutingIf.ice | 10 +++++-----
2 files changed, 7 insertions(+), 7 deletions(-)
- Log -----------------------------------------------------------------
commit 8fc477a5484ebf65457dfd4fbb1783a54e664421
Author: Ken Hunt <ken.hunt at digium.com>
Date: Wed Aug 18 08:55:31 2010 -0500
EndpointSeq is a collection of class instances, not refs.
Changed the term deviceId to destinationId.
diff --git a/Core/Endpoint/EndpointIf.ice b/Core/Endpoint/EndpointIf.ice
index c869361..ed980f5 100644
--- a/Core/Endpoint/EndpointIf.ice
+++ b/Core/Endpoint/EndpointIf.ice
@@ -19,7 +19,7 @@ module V1
class EndpointId
{
string endpointManagerId;
- string deviceId;
+ string destinationId;
};
/**
@@ -39,7 +39,7 @@ module V1
EndpointId id;
};
- sequence<BaseEndpoint *> EndpointSeq;
+ sequence<BaseEndpoint> EndpointSeq;
interface EndpointManager
{
diff --git a/Core/Routing/RoutingIf.ice b/Core/Routing/RoutingIf.ice
index 126aefa..7080ebd 100644
--- a/Core/Routing/RoutingIf.ice
+++ b/Core/Routing/RoutingIf.ice
@@ -72,7 +72,7 @@ module V1
* @param A list of reqular expressions that define the the valid endpoint ids. This
* set of regular expressions completely replaces the current set.
*/
- void setEndpointLocatorDeviceIds(string id, RegExSeq deviceIdRangeList)
+ void setEndpointLocatorDestinationIds(string id, RegExSeq deviceIdRangeList)
throws DestinationNotFoundException, InvalidParamsException;
};
@@ -100,8 +100,8 @@ module V1
{
enum OperationResult
{
- SUCCCESS,
- FAILED
+ SUCCESS,
+ FAILURE
};
const string TopicId = "::hydra::routing::event";
@@ -140,7 +140,7 @@ module V1
* @param destinationIdRangeList A list of regular expressions to be representative of the new valid ids.
* @param result Indicates whether or not the attempt was successful.
*/
- void setEndpointLocatorDeviceIds(string id, RegExSeq destinationIdRangeList, OperationResult result);
+ void setEndpointLocatorDestinationIdsEvent(string id, RegExSeq destinationIdRangeList, OperationResult result);
/**
* Called when the EndpointLocator cache has been cleared by an administrative action.
@@ -151,7 +151,7 @@ module V1
* Called when an administation operation has set the routing service policy.
* @param policy The new policy.
*/
- void setPolicy(string policy);
+ void setPolicyEvent(string policy);
};
};
-----------------------------------------------------------------------
--
asterisk-scf/integration/slice.git
More information about the asterisk-scf-commits
mailing list