TaggedComponentFactoryFinder.java revision 608:7e06bf1dcb09
1362181Sdim/*
2362181Sdim * Copyright (c) 2003, Oracle and/or its affiliates. All rights reserved.
3362181Sdim * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4362181Sdim *
5362181Sdim * This code is free software; you can redistribute it and/or modify it
6362181Sdim * under the terms of the GNU General Public License version 2 only, as
7362181Sdim * published by the Free Software Foundation.  Oracle designates this
8362181Sdim * particular file as subject to the "Classpath" exception as provided
9251877Speter * by Oracle in the LICENSE file that accompanied this code.
10362181Sdim *
11251877Speter * This code is distributed in the hope that it will be useful, but WITHOUT
12362181Sdim * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13362181Sdim * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
14362181Sdim * version 2 for more details (a copy is included in the LICENSE file that
15362181Sdim * accompanied this code).
16362181Sdim *
17362181Sdim * You should have received a copy of the GNU General Public License version
18362181Sdim * 2 along with this work; if not, write to the Free Software Foundation,
19251877Speter * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20251877Speter *
21251877Speter * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
22251877Speter * or visit www.oracle.com if you need additional information or have any
23251877Speter * questions.
24251877Speter */
25251877Speter
26251877Speterpackage com.sun.corba.se.spi.ior;
27251877Speter
28251877Speterpublic interface TaggedComponentFactoryFinder extends IdentifiableFactoryFinder
29251877Speter{
30251877Speter    /** Create a tagged component from a GIOP marshalled representation
31251877Speter     * of a tagged component.  This is needed for portable interceptors.
32251877Speter     */
33251877Speter    TaggedComponent create( org.omg.CORBA.ORB orb,
34251877Speter        org.omg.IOP.TaggedComponent comp ) ;
35251877Speter}
36251877Speter