1. /*
  2. * @(#)ServiceInformation.java 1.6 00/02/02
  3. *
  4. * Copyright 1998-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. package org.omg.CORBA;
  11. /** ServiceInformation is an IDL struct in the CORBA module.
  12. * It stores information about a CORBA service available in the
  13. * ORB implementation. It is obtained from the ORB.get_service_information
  14. * method.
  15. */
  16. public final class ServiceInformation implements org.omg.CORBA.portable.IDLEntity
  17. {
  18. public int[] service_options;
  19. public org.omg.CORBA.ServiceDetail[] service_details;
  20. public ServiceInformation() { }
  21. public ServiceInformation(int[] __service_options,
  22. org.omg.CORBA.ServiceDetail[] __service_details)
  23. {
  24. service_options = __service_options;
  25. service_details = __service_details;
  26. }
  27. }