001 /***** Copyright (c) 1999 Object Management Group. Unlimited rights to
002 duplicate and use this code are hereby granted provided that this
003 copyright notice is included.
004 *****/
005
006 package org.omg.CORBA;
007
008
009 public final class ServiceInformationHolder implements
010 org.omg.CORBA.portable.Streamable {
011
012 public org.omg.CORBA.ServiceInformation value;
013
014 public ServiceInformationHolder() {
015 }
016
017 public ServiceInformationHolder(org.omg.CORBA.ServiceInformation _value) {
018 value = _value;
019 }
020
021 public void _read(org.omg.CORBA.portable.InputStream input) {
022 value = org.omg.CORBA.ServiceInformationHelper.read(input);
023 }
024
025 public void _write(org.omg.CORBA.portable.OutputStream output) {
026 org.omg.CORBA.ServiceInformationHelper.write(output, value);
027 }
028
029 public org.omg.CORBA.TypeCode _type() {
030 return org.omg.CORBA.ServiceInformationHelper.type();
031 }
032 }