source: vlo/branches/vlo-3.0/vlo-commons/src/main/java/eu/clarin/cmdi/vlo/config/VloConfigMarshaller.java @ 4509

Last change on this file since 4509 was 4509, checked in by twagoo, 10 years ago

Written marshaller/unmarshaller for VloConfig?

File size: 1.6 KB
Line 
1/*
2 * Copyright (C) 2014 CLARIN
3 *
4 * This program is free software: you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation, either version 3 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
16 */
17package eu.clarin.cmdi.vlo.config;
18
19import javax.xml.bind.JAXBContext;
20import javax.xml.bind.JAXBException;
21import javax.xml.bind.Marshaller;
22import javax.xml.bind.Unmarshaller;
23import javax.xml.transform.Result;
24import javax.xml.transform.Source;
25
26/**
27 *
28 * @author twagoo
29 */
30public class VloConfigMarshaller {
31
32    private final JAXBContext jc;
33
34    public VloConfigMarshaller(JAXBContext jc) {
35        this.jc = jc;
36    }
37   
38    public VloConfigMarshaller() throws JAXBException {
39        this.jc = JAXBContext.newInstance(VloConfig.class);
40    }
41
42    public void marshal(VloConfig config, Result result) throws JAXBException {
43        final Marshaller marshaller = jc.createMarshaller();
44        marshaller.marshal(config, result);
45    }
46
47    public VloConfig unmarshal(Source source) throws JAXBException {
48        Unmarshaller unmarshaller = jc.createUnmarshaller();
49        return (VloConfig) unmarshaller.unmarshal(source);
50    }
51
52}
Note: See TracBrowser for help on using the repository browser.