本文整理了Java中org.omg.CORBA.portable.OutputStream.write_ushort()
方法的一些代码示例,展示了OutputStream.write_ushort()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。OutputStream.write_ushort()
方法的具体详情如下:
包路径:org.omg.CORBA.portable.OutputStream
类名称:OutputStream
方法名:write_ushort
暂无
代码示例来源:origin: org.apache.yoko/yoko-spec-corba
public static void
write(org.omg.CORBA.portable.OutputStream out, short val)
{
out.write_ushort(val);
}
}
代码示例来源:origin: org.jacorb/jacorb-omgapi
public static void write (final org.omg.CORBA.portable.OutputStream _out, short _s)
{
_out.write_ushort(_s);
}
}
代码示例来源:origin: org.jacorb/jacorb
/**
* Operation write_ushort
*/
public void write_ushort( short value )
{
delegate.write_ushort( value );
}
代码示例来源:origin: org.apache.yoko/yoko-spec-corba
public static void
write(org.omg.CORBA.portable.OutputStream out, short val)
{
out.write_ushort(val);
}
}
代码示例来源:origin: apache/cxf
public void writeUShort(Integer s) throws CorbaBindingException {
if (s == null) {
stream.write_ushort((short)0);
} else {
stream.write_ushort(s.shortValue());
}
}
代码示例来源:origin: org.apache.yoko/yoko-spec-corba
public static void write (org.omg.CORBA.portable.OutputStream ostream, org.omg.CSIIOP.TLS_SEC_TRANS value)
{
ostream.write_ushort (value.target_supports);
ostream.write_ushort (value.target_requires);
org.omg.CSIIOP.TransportAddressListHelper.write (ostream, value.addresses);
}
代码示例来源:origin: org.apache.yoko/yoko-spec-corba
public static void write (org.omg.CORBA.portable.OutputStream ostream, org.omg.Security.OptionsDirectionPair value)
{
ostream.write_ushort (value.options);
org.omg.Security.CommunicationDirectionHelper.write (ostream, value.direction);
}
代码示例来源:origin: org.apache.yoko/yoko-spec-corba
public static void
write(org.omg.CORBA.portable.OutputStream out, ListenPoint val)
{
out.write_string(val.host);
out.write_ushort(val.port);
}
}
代码示例来源:origin: org.apache.yoko/yoko-spec-corba
public static void write (org.omg.CORBA.portable.OutputStream ostream, org.omg.Security.AuditEventType value)
{
org.omg.Security.ExtensibleFamilyHelper.write (ostream, value.event_family);
ostream.write_ushort (value.event_type);
}
代码示例来源:origin: org.jboss.openjdk-orb/openjdk-orb
public static void write (org.omg.CORBA.portable.OutputStream ostream, org.omg.CSIIOP.TransportAddress value)
{
ostream.write_string (value.host_name);
ostream.write_ushort (value.port);
}
代码示例来源:origin: org.apache.yoko/yoko-spec-corba
public static void write (org.omg.CORBA.portable.OutputStream ostream, org.omg.Security.MechandOptions value)
{
ostream.write_string (value.mechanism_type);
ostream.write_ushort (value.options_supported);
}
代码示例来源:origin: org.apache.yoko/yoko-spec-corba
public static void write (org.omg.CORBA.portable.OutputStream ostream, org.omg.CSIIOP.AS_ContextSec value)
{
ostream.write_ushort (value.target_supports);
ostream.write_ushort (value.target_requires);
org.omg.CSI.OIDHelper.write (ostream, value.client_authentication_mech);
org.omg.CSI.GSS_NT_ExportedNameHelper.write (ostream, value.target_name);
}
代码示例来源:origin: org.jacorb/jacorb-omgapi
public static void write (final org.omg.CORBA.portable.OutputStream out, final org.omg.CSIIOP.AS_ContextSec s)
{
out.write_ushort(s.target_supports);
out.write_ushort(s.target_requires);
org.omg.CSI.OIDHelper.write(out,s.client_authentication_mech);
org.omg.CSI.GSS_NT_ExportedNameHelper.write(out,s.target_name);
}
}
代码示例来源:origin: org.jboss.openjdk-orb/openjdk-orb
public static void write (org.omg.CORBA.portable.OutputStream ostream, org.omg.CSIIOP.SAS_ContextSec value)
{
ostream.write_ushort (value.target_supports);
ostream.write_ushort (value.target_requires);
org.omg.CSIIOP.ServiceConfigurationListHelper.write (ostream, value.privilege_authorities);
org.omg.CSI.OIDListHelper.write (ostream, value.supported_naming_mechanisms);
ostream.write_ulong (value.supported_identity_types);
}
代码示例来源:origin: org.jboss.openjdk-orb/openjdk-orb
public static void write (org.omg.CORBA.portable.OutputStream ostream, org.omg.PortableServer.POAPackage.InvalidPolicy value)
{
// write the repository ID
ostream.write_string (id ());
ostream.write_ushort (value.index);
}
代码示例来源:origin: org.apache.yoko/yoko-spec-corba
public static void
write(org.omg.CORBA.portable.OutputStream out, InvalidPolicy val)
{
out.write_string(id());
out.write_ushort(val.index);
}
}
代码示例来源:origin: org.apache.yoko/yoko-spec-corba
public static void
write(org.omg.CORBA.portable.OutputStream out, UtcT val)
{
TimeTHelper.write(out, val.time);
out.write_ulong(val.inacclo);
out.write_ushort(val.inacchi);
TdfTHelper.write(out, val.tdf);
}
}
代码示例来源:origin: org.apache.yoko/yoko-spec-corba
public static void write (org.omg.CORBA.portable.OutputStream ostream, org.omg.CSIIOP.CompoundSecMech value)
{
ostream.write_ushort (value.target_requires);
org.omg.IOP.TaggedComponentHelper.write (ostream, value.transport_mech);
org.omg.CSIIOP.AS_ContextSecHelper.write (ostream, value.as_context_mech);
org.omg.CSIIOP.SAS_ContextSecHelper.write (ostream, value.sas_context_mech);
}
代码示例来源:origin: org.jacorb/jacorb-omgapi
public static void write (final org.omg.CORBA.portable.OutputStream out, final org.omg.CSIIOP.CompoundSecMech s)
{
out.write_ushort(s.target_requires);
org.omg.IOP.TaggedComponentHelper.write(out,s.transport_mech);
org.omg.CSIIOP.AS_ContextSecHelper.write(out,s.as_context_mech);
org.omg.CSIIOP.SAS_ContextSecHelper.write(out,s.sas_context_mech);
}
}
代码示例来源:origin: org.jacorb/jacorb-omgapi
public static void write (final org.omg.CORBA.portable.OutputStream out, final org.omg.IIOP.ProfileBody_1_1 s)
{
org.omg.IIOP.VersionHelper.write(out,s.iiop_version);
java.lang.String tmpResult1 = s.host;
out.write_string( tmpResult1 );
out.write_ushort(s.port);
org.omg.CORBA.OctetSeqHelper.write(out,s.object_key);
org.omg.IOP.TaggedComponentSeqHelper.write(out,s.components);
}
}
内容来源于网络,如有侵权,请联系作者删除!