本文整理汇总了Java中javax.xml.bind.Unmarshaller.setAttachmentUnmarshaller方法的典型用法代码示例。如果您正苦于以下问题:Java Unmarshaller.setAttachmentUnmarshaller方法的具体用法?Java Unmarshaller.setAttachmentUnmarshaller怎么用?Java Unmarshaller.setAttachmentUnmarshaller使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类javax.xml.bind.Unmarshaller
的用法示例。
在下文中一共展示了Unmarshaller.setAttachmentUnmarshaller方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: readPayloadAsJAXB
import javax.xml.bind.Unmarshaller; //导入方法依赖的package包/类
@Override
public <T> T readPayloadAsJAXB(Unmarshaller unmarshaller) throws JAXBException {
if(hasAttachments())
unmarshaller.setAttachmentUnmarshaller(new AttachmentUnmarshallerImpl(getAttachments()));
try {
return (T) unmarshaller.unmarshal(readPayloadAsSource());
} finally{
unmarshaller.setAttachmentUnmarshaller(null);
}
}
示例2: readPayloadAsJAXB
import javax.xml.bind.Unmarshaller; //导入方法依赖的package包/类
public <T> T readPayloadAsJAXB(Unmarshaller unmarshaller) throws JAXBException {
if(hasAttachments())
unmarshaller.setAttachmentUnmarshaller(new AttachmentUnmarshallerImpl(getAttachments()));
try {
return (T)unmarshaller.unmarshal(payload);
} finally{
unmarshaller.setAttachmentUnmarshaller(null);
}
}
示例3: readPayloadAsJAXB
import javax.xml.bind.Unmarshaller; //导入方法依赖的package包/类
public <T> T readPayloadAsJAXB(Unmarshaller unmarshaller) throws JAXBException {
access();
if (payload != null) {
if(hasAttachments())
unmarshaller.setAttachmentUnmarshaller(new AttachmentUnmarshallerImpl(getAttachments()));
return (T) unmarshaller.unmarshal(payload);
}
return null;
}
示例4: unmarshal
import javax.xml.bind.Unmarshaller; //导入方法依赖的package包/类
/**
* @since 2.0.3
*/
public final @NotNull T unmarshal(@NotNull Node n, @Nullable AttachmentUnmarshaller au) throws JAXBException {
Unmarshaller u = context.unmarshallerPool.take();
u.setAttachmentUnmarshaller(au);
return exit(unmarshal(u,n),u);
}
示例5: exit
import javax.xml.bind.Unmarshaller; //导入方法依赖的package包/类
private T exit(T r, Unmarshaller u) {
u.setAttachmentUnmarshaller(null);
context.unmarshallerPool.recycle(u);
return r;
}
示例6: unmarshal
import javax.xml.bind.Unmarshaller; //导入方法依赖的package包/类
/**
* @since 2.0.3
*/
public final @NotNull T unmarshal(@NotNull XMLStreamReader in, @Nullable AttachmentUnmarshaller au) throws JAXBException {
Unmarshaller u = context.unmarshallerPool.take();
u.setAttachmentUnmarshaller(au);
return exit(unmarshal(u,in),u);
}
示例7: unmarshal
import javax.xml.bind.Unmarshaller; //导入方法依赖的package包/类
/**
* @since 2.0.3
*/
public final @NotNull T unmarshal(@NotNull Source in, @Nullable AttachmentUnmarshaller au) throws JAXBException {
Unmarshaller u = context.unmarshallerPool.take();
u.setAttachmentUnmarshaller(au);
return exit(unmarshal(u,in),u);
}