blob: 5e7d62c3ec6888f0da4dcd07a16463189b1f8f19 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.omg.IIOP;
//
// IDL:omg.org/IIOP/ListenPoint:1.0
//
final public class ListenPointHelper
{
public static void
insert(org.omg.CORBA.Any any, ListenPoint val)
{
org.omg.CORBA.portable.OutputStream out = any.create_output_stream();
write(out, val);
any.read_value(out.create_input_stream(), type());
}
public static ListenPoint
extract(org.omg.CORBA.Any any)
{
if(any.type().equivalent(type()))
return read(any.create_input_stream());
else
throw new org.omg.CORBA.BAD_OPERATION();
}
private static org.omg.CORBA.TypeCode typeCode_;
public static org.omg.CORBA.TypeCode
type()
{
if(typeCode_ == null)
{
org.omg.CORBA.ORB orb = org.omg.CORBA.ORB.init();
org.omg.CORBA.StructMember[] members = new org.omg.CORBA.StructMember[2];
members[0] = new org.omg.CORBA.StructMember();
members[0].name = "host";
members[0].type = orb.get_primitive_tc(org.omg.CORBA.TCKind.tk_string);
members[1] = new org.omg.CORBA.StructMember();
members[1].name = "port";
members[1].type = orb.get_primitive_tc(org.omg.CORBA.TCKind.tk_ushort);
typeCode_ = orb.create_struct_tc(id(), "ListenPoint", members);
}
return typeCode_;
}
public static String
id()
{
return "IDL:omg.org/IIOP/ListenPoint:1.0";
}
public static ListenPoint
read(org.omg.CORBA.portable.InputStream in)
{
return new ListenPoint(in.read_string(), in.read_ushort());
}
public static void
write(org.omg.CORBA.portable.OutputStream out, ListenPoint val)
{
out.write_string(val.host);
out.write_ushort(val.port);
}
}