1. /*
  2. * @(#)ServiceInformation.java 1.4 01/11/29
  3. *
  4. * Copyright 2002 Sun Microsystems, Inc. All rights reserved.
  5. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
  6. */
  7. package org.omg.CORBA;
  8. /** ServiceInformation is an IDL struct in the CORBA module.
  9. * It stores information about a CORBA service available in the
  10. * ORB implementation. It is obtained from the ORB.get_service_information
  11. * method.
  12. */
  13. public final class ServiceInformation implements org.omg.CORBA.portable.IDLEntity
  14. {
  15. public int[] service_options;
  16. public org.omg.CORBA.ServiceDetail[] service_details;
  17. public ServiceInformation() { }
  18. public ServiceInformation(int[] __service_options,
  19. org.omg.CORBA.ServiceDetail[] __service_details)
  20. {
  21. service_options = __service_options;
  22. service_details = __service_details;
  23. }
  24. }