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. package com.sun.corba.se.spi.ior ;
  8. import java.util.List ;
  9. /** An IORTemplateList is a list of IORTemplate instances. It can be used to create IORs.
  10. * This is useful for representing IORs made of profiles from different object
  11. * adapters.
  12. * Note that any IORFactory can be added to an IORTemplateList, but it is flattened
  13. * so that the result is just a list of IORTemplate instances.
  14. */
  15. public interface IORTemplateList extends List, IORFactory, MakeImmutable {
  16. }