本文整理汇总了Java中com.sun.xml.internal.ws.spi.db.BindingContext类的典型用法代码示例。如果您正苦于以下问题:Java BindingContext类的具体用法?Java BindingContext怎么用?Java BindingContext使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
BindingContext类属于com.sun.xml.internal.ws.spi.db包,在下文中一共展示了BindingContext类的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: getPayload
import com.sun.xml.internal.ws.spi.db.BindingContext; //导入依赖的package包/类
public Object getPayload(BindingContext context) {
if (context == null) {
context = defaultJaxbContext;
}
if (context == null)
throw new WebServiceException("JAXBContext parameter cannot be null");
Object o;
if (lm == null) {
try {
o = packet.getMessage().copy().readPayloadAsJAXB(context.createUnmarshaller());
} catch (JAXBException e) {
throw new WebServiceException(e);
}
} else {
o = lm.getPayload(context);
lm = new JAXBLogicalMessageImpl(context.getJAXBContext(), o);
}
return o;
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:21,代码来源:LogicalMessageImpl.java
示例2: JAXBMessage
import com.sun.xml.internal.ws.spi.db.BindingContext; //导入依赖的package包/类
private JAXBMessage( BindingContext context, Object jaxbObject, SOAPVersion soapVer, MessageHeaders headers, AttachmentSet attachments ) {
super(soapVer);
// this.bridge = new MarshallerBridge(context);
this.bridge = context.createFragmentBridge();
this.rawContext = null;
this.jaxbObject = jaxbObject;
this.headers = headers;
this.attachmentSet = attachments;
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:10,代码来源:JAXBMessage.java
示例3: JAXBHeader
import com.sun.xml.internal.ws.spi.db.BindingContext; //导入依赖的package包/类
public JAXBHeader(BindingContext context, Object jaxbObject) {
this.jaxbObject = jaxbObject;
// this.bridge = new MarshallerBridge(context);
this.bridge = context.createFragmentBridge();
if (jaxbObject instanceof JAXBElement) {
JAXBElement e = (JAXBElement) jaxbObject;
this.nsUri = e.getName().getNamespaceURI();
this.localName = e.getName().getLocalPart();
}
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:12,代码来源:JAXBHeader.java
示例4: setPayload
import com.sun.xml.internal.ws.spi.db.BindingContext; //导入依赖的package包/类
public void setPayload(Object payload, BindingContext context) {
if (context == null) {
context = defaultJaxbContext;
}
if (payload == null) {
lm = new EmptyLogicalMessageImpl();
} else {
lm = new JAXBLogicalMessageImpl(context.getJAXBContext(), payload);
}
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:11,代码来源:LogicalMessageImpl.java
示例5: newContext
import com.sun.xml.internal.ws.spi.db.BindingContext; //导入依赖的package包/类
@Override
public BindingContext newContext(BindingInfo bi) {
Class[] classes = bi.contentClasses().toArray(new Class[bi.contentClasses().size()]);
for (int i = 0; i < classes.length; i++) {
if (WrapperComposite.class.equals(classes[i])) {
classes[i] = CompositeStructure.class;
}
}
Map<TypeInfo, TypeReference> typeInfoMappings = typeInfoMappings(bi.typeInfos());
Map<Class, Class> subclassReplacements = bi.subclassReplacements();
String defaultNamespaceRemap = bi.getDefaultNamespace();
Boolean c14nSupport = (Boolean) bi.properties().get("c14nSupport");
RuntimeAnnotationReader ar = (RuntimeAnnotationReader) bi.properties().get("com.sun.xml.internal.bind.v2.model.annotation.RuntimeAnnotationReader");
JAXBContextFactory jaxbContextFactory = (JAXBContextFactory) bi.properties().get(JAXBContextFactory.class.getName());
try {
JAXBRIContext context = (jaxbContextFactory != null)
? jaxbContextFactory.createJAXBContext(
bi.getSEIModel(),
toList(classes),
toList(typeInfoMappings.values()))
: ContextFactory.createContext(
classes, typeInfoMappings.values(),
subclassReplacements, defaultNamespaceRemap,
(c14nSupport != null) ? c14nSupport : false,
ar, false, false, false);
return new JAXBRIContextWrapper(context, typeInfoMappings);
} catch (Exception e) {
throw new DatabindingException(e);
}
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:31,代码来源:JAXBRIContextFactory.java
注:本文中的com.sun.xml.internal.ws.spi.db.BindingContext类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论