All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.biojava.nbio.structure.scop.server.ScopDomains Maven / Gradle / Ivy

There is a newer version: 7.2.2
Show newest version
/**
 *                    BioJava development code
 *
 * This code may be freely distributed and modified under the
 * terms of the GNU Lesser General Public Licence.  This should
 * be distributed with the code.  If you do not have a copy,
 * see:
 *
 *      http://www.gnu.org/copyleft/lesser.html
 *
 * Copyright for this code is held jointly by the individual
 * authors.  These should be listed in @author doc comments.
 *
 * For more information on the BioJava project and its aims,
 * or to join the biojava-l mailing list, visit the home page
 * at:
 *
 *      http://www.biojava.org/
 *
 * Created on Aug 30, 2011
 * Created by Andreas Prlic
 *
 * @since 3.0.2
 */
package org.biojava.nbio.structure.scop.server;

import org.biojava.nbio.structure.scop.ScopDomain;

import javax.xml.bind.JAXBContext;
import javax.xml.bind.Marshaller;
import javax.xml.bind.Unmarshaller;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlRootElement;
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.PrintStream;
import java.io.Serializable;
import java.util.List;

@XmlRootElement(name = "ScopDomains", namespace ="http://source.rcsb.org")
@XmlAccessorType(XmlAccessType.PUBLIC_MEMBER)
public class ScopDomains implements Serializable{

	/**
	 *
	 */
	private static final long serialVersionUID = 7693404355005856746L;

	List domains ;

	static JAXBContext jaxbContext;
	static {
		try {
			jaxbContext= JAXBContext.newInstance(ScopDomains.class);
		} catch (Exception e){
			throw new RuntimeException("Could not initialize JAXB context for " + ScopDomains.class, e);
		}
	}


	public void setScopDomain(List domains) {
		this.domains = domains;

	}

	public List getScopDomain() {
		return domains;
	}

	public  String toXML(){

		ByteArrayOutputStream baos = new ByteArrayOutputStream();

		PrintStream ps = new PrintStream(baos);

		try {

			Marshaller m = jaxbContext.createMarshaller();

			m.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, Boolean.TRUE);

			m.marshal( this, ps);


		} catch (Exception e){
			throw new RuntimeException("Could not convert " + getClass() + " to XML", e);
		}

		return baos.toString();

	}

	public static ScopDomains fromXML(String xml){

		ScopDomains job = null;

		try {

			Unmarshaller un = jaxbContext.createUnmarshaller();

			ByteArrayInputStream bais = new ByteArrayInputStream(xml.getBytes());

			job = (ScopDomains) un.unmarshal(bais);

		} catch (Exception e){
			throw new RuntimeException("Could not parse " + ScopDomains.class + " from XML", e);
		}

		return job;
	}




}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy