01: /***** Copyright (c) 1999 Object Management Group. Unlimited rights to
02: duplicate and use this code are hereby granted provided that this
03: copyright notice is included.
04: *****/package org.omg.CORBA;
05:
06: public final class ServiceInformationHolder implements
07: org.omg.CORBA.portable.Streamable {
08:
09: public org.omg.CORBA.ServiceInformation value;
10:
11: public ServiceInformationHolder() {
12: }
13:
14: public ServiceInformationHolder(
15: org.omg.CORBA.ServiceInformation _value) {
16: value = _value;
17: }
18:
19: public void _read(org.omg.CORBA.portable.InputStream input) {
20: value = org.omg.CORBA.ServiceInformationHelper.read(input);
21: }
22:
23: public void _write(org.omg.CORBA.portable.OutputStream output) {
24: org.omg.CORBA.ServiceInformationHelper.write(output, value);
25: }
26:
27: public org.omg.CORBA.TypeCode _type() {
28: return org.omg.CORBA.ServiceInformationHelper.type();
29: }
30: }
|