1 /* 2 * @(#)IORTemplateList.java 1.5 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 import java.util.List ; 11 12 /** An IORTemplateList is a list of IORTemplate instances. It can be used to create IORs. 13 * This is useful for representing IORs made of profiles from different object 14 * adapters. 15 * Note that any IORFactory can be added to an IORTemplateList, but it is flattened 16 * so that the result is just a list of IORTemplate instances. 17 */ 18 public interface IORTemplateList extends List, IORFactory, MakeImmutable { 19 } 20 21