blob: 96a85168d6e0cd19b0360484abb9089fb20ea841 [file] [log] [blame]
/**
*
*/
package org.apache.taverna.scufl2.translator.scufl.processorelement;
/*
*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*
*/
import java.net.URI;
import java.net.URISyntaxException;
import java.net.URL;
import java.util.Arrays;
import java.util.List;
/**
* @author alanrw
*/
public class BiomobyExtensionParser extends AbstractExtensionParser {
private static final String BIOMOBY_XSD = "/uk/org/taverna/scufl2/translator/scufl/xsd/scufl-biomoby.xsd";
@Override
public boolean canHandle(Class<?> c) {
return c.equals(org.apache.taverna.scufl2.xml.scufl.jaxb.BiomobyobjectType.class)
|| c.equals(org.apache.taverna.scufl2.xml.scufl.jaxb.BiomobyparserType.class)
|| c.equals(org.apache.taverna.scufl2.xml.scufl.jaxb.BiomobywsdlType.class);
}
@Override
public List<URI> getAdditionalSchemas() {
URL apiConsumerXsd = getClass().getResource(BIOMOBY_XSD);
try {
return Arrays.asList(apiConsumerXsd.toURI());
} catch (URISyntaxException e) {
throw new IllegalStateException("Can't find APIConsumer schema "
+ apiConsumerXsd);
}
}
@Override
public void parseScuflObject(Object o) {
// TODO write to log?
System.err.println(this.getClass() + " is not yet implemented");
}
}