/* * Copyright (C) 2011 SeqWare * * 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/>. */ package net.sourceforge.seqware.webservice.resources.tables; import java.util.ArrayList; import java.util.List; import net.sf.beanlib.hibernate3.Hibernate3DtoCopier; import net.sourceforge.seqware.common.business.LibrarySourceService; import net.sourceforge.seqware.common.factory.BeanFactory; import net.sourceforge.seqware.common.model.LibrarySource; import net.sourceforge.seqware.common.model.lists.LibrarySourceList; import net.sourceforge.seqware.common.util.xmltools.JaxbObject; import net.sourceforge.seqware.common.util.xmltools.XmlTools; import org.apache.log4j.Logger; import org.restlet.resource.Get; import org.restlet.resource.ResourceException; import org.w3c.dom.Document; /** * <p> * ExperimentResource class. * </p> * * @author boconnor * @version $Id: $Id */ public class LibrarySourceResource extends DatabaseResource { private Logger logger; /** * <p> * Constructor for ExperimentResource. * </p> */ public LibrarySourceResource() { super("library_source"); logger = Logger.getLogger(LibrarySourceResource.class); } /** {@inheritDoc} */ @Override protected void doInit() throws ResourceException { super.doInit(); authenticate(); } /** * <p> * getXml. * </p> */ @Get public void getXml() { LibrarySourceService ss = BeanFactory.getLibrarySourceServiceBean(); logger.debug("registration: " + registration); List<LibrarySource> objects = (List<LibrarySource>) testIfNull(ss.list()); logger.debug("library_sources: " + objects.size() + " " + objects); Hibernate3DtoCopier copier = new Hibernate3DtoCopier(); JaxbObject<LibrarySourceList> jaxbTool = new JaxbObject<>(); LibrarySourceList list = new LibrarySourceList(); list.setList(new ArrayList()); for (LibrarySource obj : objects) { LibrarySource dto = copier.hibernate2dto(LibrarySource.class, obj); list.add(dto); } Document line = XmlTools.marshalToDocument(jaxbTool, list); getResponse().setEntity(XmlTools.getRepresentation(line)); } }