01: package org.omg.CORBA;
02:
03: public final class ServiceInformation implements
04: org.omg.CORBA.portable.IDLEntity {
05:
06: public int[] service_options;
07: public int[] service_details;
08:
09: public ServiceInformation() {
10: }
11:
12: public ServiceInformation(int[] service_options,
13: int[] service_details) {
14: this.service_options = service_options;
15: this.service_details = service_details;
16: }
17:
18: }
|