001    package org.omg.CORBA;
002    
003    
004    public final class ServiceInformation implements 
005          org.omg.CORBA.portable.IDLEntity {
006    
007        public int[] service_options;
008        public int[] service_details;
009    
010        public ServiceInformation() { 
011        }
012    
013        public ServiceInformation (int[] service_options, int[] service_details) {
014            this.service_options = service_options;
015            this.service_details = service_details;
016        }
017    
018    }