[asterisk-scf-commits] asterisk-scf/integration/slice.git branch "sessiondefaults" updated.
Commits to the Asterisk SCF project code repositories
asterisk-scf-commits at lists.digium.com
Thu Jul 28 16:42:12 CDT 2011
branch "sessiondefaults" has been updated
via 222129d9e4c7b1be9d1357dd8c398f11a5b61a94 (commit)
from 0789e8404c531ea966dd08e4685245d67e8896b9 (commit)
Summary of changes:
.../SessionCommunicationsIf.ice | 4 ++--
slice/AsteriskSCF/System/ExceptionsIf.ice | 17 ++++++++++++++++-
2 files changed, 18 insertions(+), 3 deletions(-)
- Log -----------------------------------------------------------------
commit 222129d9e4c7b1be9d1357dd8c398f11a5b61a94
Author: Ken Hunt <ken.hunt at digium.com>
Date: Thu Jul 28 16:41:43 2011 -0500
Minor tweaks made while implementing default session cookies and listeners.
diff --git a/slice/AsteriskSCF/SessionCommunications/SessionCommunicationsIf.ice b/slice/AsteriskSCF/SessionCommunications/SessionCommunicationsIf.ice
index 03cbbee..c7896ba 100644
--- a/slice/AsteriskSCF/SessionCommunications/SessionCommunicationsIf.ice
+++ b/slice/AsteriskSCF/SessionCommunications/SessionCommunicationsIf.ice
@@ -666,14 +666,14 @@ module V1
* Does not alter any existing sessions, but any sessions created
* henceforth will have these cookies set.
*/
- void addDefaultSessionCookies(SessionCookies cookie);
+ void addDefaultSessionCookies(SessionCookies cookies);
/**
* Removes a set of default SessionCookies for sessions created for this endpoint.
* Doesn't remove cookies from any existing sessions, but new
* sessions for this endpoint will not have these cookies set.
*/
- void removeDefaultSessionCookies(SessionCookies cookie);
+ void removeDefaultSessionCookies(SessionCookies cookies);
};
/**
diff --git a/slice/AsteriskSCF/System/ExceptionsIf.ice b/slice/AsteriskSCF/System/ExceptionsIf.ice
index f18a941..a1c0296 100644
--- a/slice/AsteriskSCF/System/ExceptionsIf.ice
+++ b/slice/AsteriskSCF/System/ExceptionsIf.ice
@@ -26,16 +26,31 @@ module V1
{
/**
* Exception thrown when a "null" proxy is passed in where it is invalid to do so.
- **/
+ */
exception NullProxyException
{
};
+ /**
+ * Exception thrown when a "null" handle is passed in where it is invalid to do so.
+ */
+ exception NullHandleException
+ {
+ };
+
exception InternalInitializationException
{
string message;
};
+ /**
+ * Exception thrown when an unknown object is requested.
+ */
+ exception UnknownObject
+ {
+ string identifier;
+ };
+
}; /* End of V1 */
}; /* End of System */
-----------------------------------------------------------------------
--
asterisk-scf/integration/slice.git
More information about the asterisk-scf-commits
mailing list