From 86beaaacd17f5d9fba397114fae2799390929a48 Mon Sep 17 00:00:00 2001 From: antelder Date: Thu, 16 Feb 2012 15:42:31 +0000 Subject: Delete old RC tags git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1245042 13f79535-47bb-0310-9956-ffa450edef68 --- .../java/org/oasisopen/sca/RequestContext.java | 71 ---------------------- 1 file changed, 71 deletions(-) delete mode 100644 sca-java-2.x/tags/2.0-Beta2-RC3/modules/sca-api/src/main/java/org/oasisopen/sca/RequestContext.java (limited to 'sca-java-2.x/tags/2.0-Beta2-RC3/modules/sca-api/src/main/java/org/oasisopen/sca/RequestContext.java') diff --git a/sca-java-2.x/tags/2.0-Beta2-RC3/modules/sca-api/src/main/java/org/oasisopen/sca/RequestContext.java b/sca-java-2.x/tags/2.0-Beta2-RC3/modules/sca-api/src/main/java/org/oasisopen/sca/RequestContext.java deleted file mode 100644 index 162e8e2055..0000000000 --- a/sca-java-2.x/tags/2.0-Beta2-RC3/modules/sca-api/src/main/java/org/oasisopen/sca/RequestContext.java +++ /dev/null @@ -1,71 +0,0 @@ -/* - * Copyright(C) OASIS(R) 2005,2010. All Rights Reserved. - * OASIS trademark, IPR and other policies apply. - */ -package org.oasisopen.sca; - -import javax.security.auth.Subject; - -/** - * The RequestContext interface is used to obtain information about - * the service invocation which is executing when one of the - * RequestContext methods is called. - */ -public interface RequestContext { - - /** - * Returns the JAAS Subject of the current request. - * - * @return The JAAS (javax.security.auth.Subject) Subject of the - * current request. Returns null if there is no JAAS - * Subject. - */ - Subject getSecuritySubject(); - - /** - * Returns the name of the service under which the current service - * method is executing. - * - * @return the name of the service under which the current service - * operation is executing, or null if called outside of the - * execution of a service method. - */ - String getServiceName(); - - /** - * Returns a service reference for the callback for the invoked service - * operation, as specified by the service caller. - * - * @param the Java interface type of the callback. - * @return a service reference for the callback as specified by - * the service caller. Returns null when called for a service - * request whose interface is not bidirectional, or when called - * during execution of a callback request, or when called outside - * the execution of a service method. - */ - ServiceReference getCallbackReference(); - - /** - * Returns a proxy for the callback for the invoked service as specified - * by the service client. - * - * @param the type of the callback proxy - * @return a proxy for the callback for the invoked service as specified - * by the service client. Returns null when called during the - * execution of a service method whose interface is not - * bidirectional, or when called during the execution of a - * callback request, or when called outside the execution of a - * service method. - */ - CB getCallback(); - - /** - * Returns a ServiceReference object for the service that is executing. - * - * @param the Java interface type associated with the service reference. - * @return the ServiceReference representing the service or callback - * that is executing. Returns null if when called outside the - * execution of a service method. - */ - ServiceReference getServiceReference(); -} -- cgit v1.2.3