View Javadoc
1   /*
2    * Copyright 2011 the original author or authors.
3    *
4    * Licensed under the Apache License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    *
8    *     http://www.apache.org/licenses/LICENSE-2.0
9    *
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
15   */
16  package org.openehealth.ipf.platform.camel.ihe.continua.hrn.converters;
17  
18  import java.io.ByteArrayInputStream;
19  import javax.xml.parsers.DocumentBuilder;
20  import org.openehealth.ipf.commons.core.DomBuildersThreadLocal;
21  import org.springframework.core.convert.converter.Converter;
22  import org.w3c.dom.Document;
23  
24  /**
25   * @author Stefan Ivanov
26   */
27  public class ByteArrayToDomConverter implements Converter<byte[], Document> {
28  
29      private static final DomBuildersThreadLocal DOM_BUILDERS = new DomBuildersThreadLocal();
30  
31      @Override
32      public Document convert(byte[] source) {
33          try {
34              DocumentBuilder builder = DOM_BUILDERS.get();
35              return builder.parse(new ByteArrayInputStream(source));
36          } catch (Exception e) {
37              throw new IllegalArgumentException(e);
38          }
39      }
40  }