Java XML JAXB Context getRightsContext()

Here you can find the source of getRightsContext()

Description

get Rights Context

License

Open Source License

Declaration

public static JAXBContext getRightsContext() throws JAXBException 

Method Source Code

//package com.java2s;
/**//w w  w.j  av a  2s . c  o  m
 * RightsUtils.java
 * Author: Francesco Gallo (gallo@eurix.it)
 * 
 * This file is part of PrestoPRIME Preservation Platform (P4).
 * 
 * Copyright (C) 2009-2012 EURIX Srl, Torino, Italy
 *  
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 * 
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 * 
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

import javax.xml.bind.JAXBContext;
import javax.xml.bind.JAXBException;

public class Main {
    public static JAXBContext getRightsContext() throws JAXBException {
        return JAXBContext.newInstance("eu.prestoprime.model.ext.rights");
    }
}

Related

  1. getJAXBContext(String contextPath)
  2. getJAXBContext(String namespaces)
  3. getJAXBContext(String packagePrefix)
  4. getJAXBContextForWebService(Class webService)
  5. getRequestContext()
  6. isElement(String contextPath, Object object)
  7. parseXMLFile(String fileName, String contextPath)
  8. toString(JAXBContext context, Object object)
  9. toXML(JAXBContext context, T obj)