org.jboss.marshalling.Marshalling.nullClassExternalizerFactory()方法的使用及代码示例

x33g5p2x  于2022-01-25 转载在 其他  
字(2.6k)|赞(0)|评价(0)|浏览(102)

本文整理了Java中org.jboss.marshalling.Marshalling.nullClassExternalizerFactory()方法的一些代码示例,展示了Marshalling.nullClassExternalizerFactory()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Marshalling.nullClassExternalizerFactory()方法的具体详情如下:
包路径:org.jboss.marshalling.Marshalling
类名称:Marshalling
方法名:nullClassExternalizerFactory

Marshalling.nullClassExternalizerFactory介绍

[英]Return the null class externalizer factory. This instance does not externalize any classes.
[中]返回空类外部化器工厂。此实例不会将任何类外部化。

代码示例

代码示例来源:origin: wildfly/wildfly

/**
 * Get the default class externalizer factory, which is used if none was configured.  This base implementation returns a
 * no-operation class externalizer factory.
 *
 * @return the class externalizer factory
 */
protected ClassExternalizerFactory getDefaultClassExternalizerFactory() {
  return Marshalling.nullClassExternalizerFactory();
}

代码示例来源:origin: org.jboss.marshalling/jboss-marshalling

/**
 * Get the default class externalizer factory, which is used if none was configured.  This base implementation returns a
 * no-operation class externalizer factory.
 *
 * @return the class externalizer factory
 */
protected ClassExternalizerFactory getDefaultClassExternalizerFactory() {
  return Marshalling.nullClassExternalizerFactory();
}

代码示例来源:origin: org.jboss.marshalling/jboss-marshalling-osgi

/**
 * Get the default class externalizer factory, which is used if none was configured.  This base implementation returns a
 * no-operation class externalizer factory.
 *
 * @return the class externalizer factory
 */
protected ClassExternalizerFactory getDefaultClassExternalizerFactory() {
  return Marshalling.nullClassExternalizerFactory();
}

代码示例来源:origin: org.jboss.eap/wildfly-client-all

/**
 * Get the default class externalizer factory, which is used if none was configured.  This base implementation returns a
 * no-operation class externalizer factory.
 *
 * @return the class externalizer factory
 */
protected ClassExternalizerFactory getDefaultClassExternalizerFactory() {
  return Marshalling.nullClassExternalizerFactory();
}

代码示例来源:origin: jboss-remoting/jboss-marshalling

/**
 * Get the default class externalizer factory, which is used if none was configured.  This base implementation returns a
 * no-operation class externalizer factory.
 *
 * @return the class externalizer factory
 */
protected ClassExternalizerFactory getDefaultClassExternalizerFactory() {
  return Marshalling.nullClassExternalizerFactory();
}

代码示例来源:origin: jboss-remoting/jboss-marshalling

/**
 * Get the default class externalizer factory, which is used if none was configured.  This base implementation returns a
 * no-operation class externalizer factory.
 *
 * @return the class externalizer factory
 */
protected ClassExternalizerFactory getDefaultClassExternalizerFactory() {
  return Marshalling.nullClassExternalizerFactory();
}

相关文章