1. /*
  2. * @(#)ServiceDetail.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. public final class ServiceDetail implements org.omg.CORBA.portable.IDLEntity
  9. {
  10. public int service_detail_type;
  11. public byte[] service_detail;
  12. public ServiceDetail() { }
  13. public ServiceDetail(int service_detail_type, byte[] service_detail) {
  14. this.service_detail_type = service_detail_type;
  15. this.service_detail = service_detail;
  16. }
  17. }