blob: 9cc592dc28fdb3c05c33a4dd55e3baf46737a8ca [file] [log] [blame]
/*
* Copyright (C) 2011 The University of Manchester
*
* See the file "LICENSE" for license terms.
*/
/**
* This package contains the Atom feed implementation within Taverna Server.
* @author Donal Fellows
*/
@XmlSchema(namespace = FEED, elementFormDefault = QUALIFIED, attributeFormDefault = QUALIFIED, xmlns = {
@XmlNs(prefix = "xlink", namespaceURI = XLINK),
@XmlNs(prefix = "ts", namespaceURI = SERVER),
@XmlNs(prefix = "ts-rest", namespaceURI = SERVER_REST),
@XmlNs(prefix = "ts-soap", namespaceURI = SERVER_SOAP),
@XmlNs(prefix = "feed", namespaceURI = FEED),
@XmlNs(prefix = "admin", namespaceURI = ADMIN) })
package org.taverna.server.master.notification.atom;
import static javax.xml.bind.annotation.XmlNsForm.QUALIFIED;
import static org.taverna.server.master.common.Namespaces.ADMIN;
import static org.taverna.server.master.common.Namespaces.FEED;
import static org.taverna.server.master.common.Namespaces.SERVER;
import static org.taverna.server.master.common.Namespaces.SERVER_REST;
import static org.taverna.server.master.common.Namespaces.SERVER_SOAP;
import static org.taverna.server.master.common.Namespaces.XLINK;
import javax.xml.bind.annotation.XmlNs;
import javax.xml.bind.annotation.XmlSchema;