1/************************************************************** 2 * 3 * Licensed to the Apache Software Foundation (ASF) under one 4 * or more contributor license agreements. See the NOTICE file 5 * distributed with this work for additional information 6 * regarding copyright ownership. The ASF licenses this file 7 * to you under the Apache License, Version 2.0 (the 8 * "License"); you may not use this file except in compliance 9 * with the License. You may obtain a copy of the License at 10 * 11 * http://www.apache.org/licenses/LICENSE-2.0 12 * 13 * Unless required by applicable law or agreed to in writing, 14 * software distributed under the License is distributed on an 15 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16 * KIND, either express or implied. See the License for the 17 * specific language governing permissions and limitations 18 * under the License. 19 * 20 *************************************************************/ 21 22 23#include <com/sun/star/corba/giop/giop.idl> 24module com { module sun { module star { module corba { module iiop 25{ 26 /** 27 @deprecated 28 */ 29published struct Version 30 { 31 byte major; 32 byte minor; 33 }; 34 35 36 /** 37 @deprecated 38 */ 39published struct ProfileBody_1_0 40 {// renamed from ProfileBody 41 Version iiop_version; 42 CorbaString8 host; 43 unsigned short port; 44 sequence <byte> object_key; 45 }; 46 47 /** 48 @deprecated 49 */ 50published struct ProfileBody_1_1 51 {// also used for 1.2 52 Version iiop_version; 53 CorbaString8 host; 54 unsigned short port; 55 sequence < byte > object_key; 56// Added in 1.1 unchanged for 1.2 57 sequence <com::sun::star::corba::iop::TaggedComponent> components; 58 }; 59 60 /** 61 @deprecated 62 */ 63published struct ListenPoint 64 { 65 CorbaString8 host; 66 unsigned short port; 67 }; 68 69 /** 70 @deprecated 71 */ 72published typedef sequence<ListenPoint> ListenPointList; 73 74 /** 75 @deprecated 76 */ 77published struct BiDirIIOPServiceContext 78 {// BI_DIR_IIOP Service Context 79 ListenPointList listen_points; 80 }; 81 82}; }; }; }; }; 83 84