KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sun > corba > se > spi > ior > TaggedComponentFactoryFinder


1 /*
2  * @(#)TaggedComponentFactoryFinder.java 1.2 03/12/19
3  *
4  * Copyright 2004 Sun Microsystems, Inc. All rights reserved.
5  * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
6  */

7
8 package com.sun.corba.se.spi.ior;
9
10 public interface TaggedComponentFactoryFinder extends IdentifiableFactoryFinder
11 {
12     /** Create a tagged component from a GIOP marshalled representation
13      * of a tagged component. This is needed for portable interceptors.
14      */

15     TaggedComponent create( org.omg.CORBA.ORB JavaDoc orb,
16     org.omg.IOP.TaggedComponent JavaDoc comp ) ;
17 }
18
Popular Tags