本文整理汇总了Java中gov.samhsa.c2s.common.document.converter.DocumentXmlConverter类的典型用法代码示例。如果您正苦于以下问题:Java DocumentXmlConverter类的具体用法?Java DocumentXmlConverter怎么用?Java DocumentXmlConverter使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
DocumentXmlConverter类属于gov.samhsa.c2s.common.document.converter包,在下文中一共展示了DocumentXmlConverter类的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: DocumentRedactorImpl
点赞 3
import gov.samhsa.c2s.common.document.converter.DocumentXmlConverter; //导入依赖的package包/类
/**
* Instantiates a new document redactor impl.
*
* @param marshaller the marshaller
* @param documentXmlConverter the document xml converter
* @param documentAccessor the document accessor
* @param documentLevelRedactionHandlers the document level redaction handlers
* @param obligationLevelRedactionHandlers the obligation level redaction handlers
* @param clinicalFactLevelRedactionHandlers the clinical fact level redaction handlers
* @param postRedactionLevelRedactionHandlers the post redaction level redaction handlers
*/
@Autowired
public DocumentRedactorImpl(
SimpleMarshaller marshaller,
DocumentXmlConverter documentXmlConverter,
DocumentAccessor documentAccessor,
Set<AbstractDocumentLevelRedactionHandler> documentLevelRedactionHandlers,
Set<AbstractObligationLevelRedactionHandler> obligationLevelRedactionHandlers,
Set<AbstractClinicalFactLevelRedactionHandler> clinicalFactLevelRedactionHandlers,
Set<AbstractPostRedactionLevelRedactionHandler> postRedactionLevelRedactionHandlers) {
super();
this.marshaller = marshaller;
this.documentXmlConverter = documentXmlConverter;
this.documentAccessor = documentAccessor;
this.documentLevelRedactionHandlers = documentLevelRedactionHandlers;
this.obligationLevelRedactionHandlers = obligationLevelRedactionHandlers;
this.clinicalFactLevelRedactionHandlers = clinicalFactLevelRedactionHandlers;
this.postRedactionLevelRedactionHandlers = postRedactionLevelRedactionHandlers;
}
开发者ID:bhits,
项目名称:dss-api,
代码行数:30,
代码来源:DocumentRedactorImpl.java
示例2: EmbeddedClinicalDocumentExtractorImpl
点赞 2
import gov.samhsa.c2s.common.document.converter.DocumentXmlConverter; //导入依赖的package包/类
/**
* Instantiates a new embedded clinical document extractor impl.
*
* @param documentXmlConverter the document xml converter
* @param documentAccessor the document accessor
*/
@Autowired
public EmbeddedClinicalDocumentExtractorImpl(
DocumentXmlConverter documentXmlConverter,
DocumentAccessor documentAccessor) {
super();
this.documentXmlConverter = documentXmlConverter;
this.documentAccessor = documentAccessor;
}
开发者ID:bhits,
项目名称:dss-api,
代码行数:15,
代码来源:EmbeddedClinicalDocumentExtractorImpl.java
示例3: DocumentEditorImpl
点赞 2
import gov.samhsa.c2s.common.document.converter.DocumentXmlConverter; //导入依赖的package包/类
/**
* Instantiates a new document editor impl.
*
* @param metadataGenerator the metadata generator
* @param fileReader the file reader
* @param documentXmlConverter the document xml converter
* @param documentAccessor the document accessor
*/
@Autowired
public DocumentEditorImpl(MetadataGenerator metadataGenerator,
FileReader fileReader, DocumentXmlConverter documentXmlConverter,
DocumentAccessor documentAccessor) {
super();
this.metadataGenerator = metadataGenerator;
this.fileReader = fileReader;
this.documentXmlConverter = documentXmlConverter;
this.documentAccessor = documentAccessor;
}
开发者ID:bhits,
项目名称:dss-api,
代码行数:19,
代码来源:DocumentEditorImpl.java
示例4: DocumentTypeResolverImpl
点赞 2
import gov.samhsa.c2s.common.document.converter.DocumentXmlConverter; //导入依赖的package包/类
@Autowired
public DocumentTypeResolverImpl(DocumentAccessor documentAccessor, DocumentXmlConverter documentXmlConverter) {
this.documentAccessor = documentAccessor;
this.documentXmlConverter = documentXmlConverter;
}
开发者ID:bhits,
项目名称:document-validator,
代码行数:6,
代码来源:DocumentTypeResolverImpl.java
示例5: documentXmlConverter
点赞 2
import gov.samhsa.c2s.common.document.converter.DocumentXmlConverter; //导入依赖的package包/类
@Bean
public DocumentXmlConverter documentXmlConverter() {
return new DocumentXmlConverterImpl();
}
开发者ID:bhits,
项目名称:document-validator,
代码行数:5,
代码来源:ApplicationContextConfig.java
示例6: documentXmlConverter
点赞 2
import gov.samhsa.c2s.common.document.converter.DocumentXmlConverter; //导入依赖的package包/类
@Bean
public DocumentXmlConverter documentXmlConverter(){
return new DocumentXmlConverterImpl();
}
开发者ID:bhits,
项目名称:pcm-api,
代码行数:5,
代码来源:CommonLibraryConfig.java
示例7: DocumentEncrypterImpl
点赞 1
import gov.samhsa.c2s.common.document.converter.DocumentXmlConverter; //导入依赖的package包/类
/**
* Instantiates a new document encrypter impl.
*
* @param documentXmlConverter the document xml converter
*/
public DocumentEncrypterImpl(DocumentXmlConverter documentXmlConverter) {
super();
this.documentXmlConverter = documentXmlConverter;
}
开发者ID:bhits,
项目名称:dss-api,
代码行数:10,
代码来源:DocumentEncrypterImpl.java