blob: 930fd75aed46c6511abbba6e5080b1787ab9bbdf [file] [log] [blame]
/*
* Copyright (C) 2011 The University of Manchester
*
* See the file "LICENSE" for license terms.
*/
/**
* This package contains the RESTful administration interface to Taverna Server.
* @author Donal Fellows
*/
@XmlSchema(namespace = ADMIN, 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),
@XmlNs(prefix = "ur", namespaceURI = UR),
@XmlNs(prefix = "ds", namespaceURI = XSIG) })
package org.taverna.server.master.admin;
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.UR;
import static org.taverna.server.master.common.Namespaces.XLINK;
import static org.taverna.server.master.common.Namespaces.XSIG;
import javax.xml.bind.annotation.XmlNs;
import javax.xml.bind.annotation.XmlSchema;