01: /*
02: * BEGIN_HEADER - DO NOT EDIT
03: *
04: * The contents of this file are subject to the terms
05: * of the Common Development and Distribution License
06: * (the "License"). You may not use this file except
07: * in compliance with the License.
08: *
09: * You can obtain a copy of the license at
10: * https://open-esb.dev.java.net/public/CDDLv1.0.html.
11: * See the License for the specific language governing
12: * permissions and limitations under the License.
13: *
14: * When distributing Covered Code, include this CDDL
15: * HEADER in each file and include the License file at
16: * https://open-esb.dev.java.net/public/CDDLv1.0.html.
17: * If applicable add the following below this CDDL HEADER,
18: * with the fields enclosed by brackets "[]" replaced with
19: * your own identifying information: Portions Copyright
20: * [year] [name of copyright owner]
21: */
22:
23: /*
24: * @(#)Interceptor.java
25: * Copyright 2004-2007 Sun Microsystems, Inc. All Rights Reserved.
26: *
27: * END_HEADER - DO NOT EDIT
28: */
29: /**
30: * Interceptor.java
31: *
32: * SUN PROPRIETARY/CONFIDENTIAL.
33: * This software is the proprietary information of Sun Microsystems, Inc.
34: * Use is subject to license terms.
35: *
36: */package com.sun.jbi.internal.security;
37:
38: import com.sun.jbi.binding.security.Endpoint;
39: import com.sun.jbi.binding.security.ErrorHandler;
40: import com.sun.jbi.binding.security.MessageContext;
41: import com.sun.jbi.binding.security.MessageHandlerException;
42:
43: import javax.security.auth.Subject;
44:
45: /**
46: * The Interceptor used by clients to delegate processing requests.
47: * @author Sun Microsystems, Inc.
48: */
49: public class Interceptor implements
50: com.sun.jbi.binding.security.Interceptor {
51: /**
52: * Process an incoming message. For an Inbound endpoint the incoming message is
53: * a request being sent to invoke a particular operation in a Service. For an
54: * Outbound endpoint the incoming message is a Response to a earlier message.
55: *
56: * @param endpoint is the deployed Endpoint which is the sink of the Message
57: * @param operation is the operation being invoked
58: * @param subject is the Subject to be updated with the Senders Identity
59: * @param msgCtx is the MessageContext which is a wrapper around the message.
60: * @throws MessageHandlerException on Errors
61: */
62: public void processIncomingMessage(Endpoint endpoint,
63: String operation, MessageContext msgCtx, Subject subject)
64: throws MessageHandlerException {
65: // -- no-op
66: }
67:
68: /**
69: * Process an outbound message. For an Inbound endpoint the outgoind message is
70: * a response being sent to an earlier request to the Endpoint to invoke a particular
71: * operation in a Service. For an Outbound endpoint the outbound message is a Request
72: * being sent to a remote Service to invoke a operation.
73: *
74: * @param endpoint is the deployed Endpoint which is the source of the Message
75: * @param operation is the operation being invoked
76: * param subject is the Subject which identifies the Sender.
77: * @param msgCtx is the MessageContext which is a wrapper around the message.
78: * @throws MessageHandlerException on Errors
79: */
80: public void processOutgoingMessage(Endpoint endpoint,
81: String operation, MessageContext msgCtx, Subject subject)
82: throws MessageHandlerException {
83: // -- no-op
84: }
85: }
|