/* * @(#)IORTemplate.java 1.8 03/12/19 * * Copyright 2004 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */ package com.sun.corba.se.spi.ior ; import java.util.List ; import java.util.Iterator ; /** An IORTemplate provides all of the data necessary to create an IOR except * for the typeId and ObjectId. It is a list of TaggedProfileTemplates. */ public interface IORTemplate extends List, IORFactory, MakeImmutable { /** Iterate over all TaggedProfileTemplates in this IORTemplate * with the given id. */ Iterator iteratorById( int id ) ; ObjectKeyTemplate getObjectKeyTemplate() ; }