1. /*
  2. * @(#)Binding.java 1.9 00/02/02
  3. *
  4. * Copyright 1997-2000 Sun Microsystems, Inc. All Rights Reserved.
  5. *
  6. * This software is the proprietary information of Sun Microsystems, Inc.
  7. * Use is subject to license terms.
  8. *
  9. */
  10. /*
  11. * File: ./org/omg/CosNaming/Binding.java
  12. * From: nameservice.idl
  13. * Date: Tue Aug 11 03:12:09 1998
  14. * By: idltojava Java IDL 1.2 Aug 11 1998 02:00:18
  15. */
  16. package org.omg.CosNaming;
  17. public final class Binding implements org.omg.CORBA.portable.IDLEntity {
  18. // instance variables
  19. public org.omg.CosNaming.NameComponent[] binding_name;
  20. public org.omg.CosNaming.BindingType binding_type;
  21. // constructors
  22. public Binding() { }
  23. public Binding(org.omg.CosNaming.NameComponent[] __binding_name, org.omg.CosNaming.BindingType __binding_type) {
  24. binding_name = __binding_name;
  25. binding_type = __binding_type;
  26. }
  27. }