/**
 * 
 */
package org.biomoby.registry.Central;

import java.io.IOException;

import org.jdom.Document;
import org.jdom.JDOMException;

/**
 * @author Eddie
 * created Dec 21, 2005
 */
public class CentralImpl implements Central {

	/* (non-Javadoc)
	 * @see org.biomoby.registry.Central.Central#findService(java.lang.String)
	 */
	public String findService(String serviceQueryObject) {
		Document doc = null;
		
		// now extract the elements from the DOM doc
		return null;
	}

	/* (non-Javadoc)
	 * @see org.biomoby.registry.Central.Central#retrieveService(java.lang.String)
	 */
	public String retrieveService(String query) {
		Document doc = null;
		
		// now extract the elements from the DOM doc
		return null;
	}

	/* (non-Javadoc)
	 * @see org.biomoby.registry.Central.Central#retrieveResourceURLs()
	 */
	public String retrieveResourceURLs() {

		return null;
	}

	/* (non-Javadoc)
	 * @see org.biomoby.registry.Central.Central#retrieveServiceProviders()
	 */
	public String retrieveServiceProviders() {

		return null;
	}

	/* (non-Javadoc)
	 * @see org.biomoby.registry.Central.Central#retrieveServiceNames()
	 */
	public String retrieveServiceNames() {

		return null;
	}

	/* (non-Javadoc)
	 * @see org.biomoby.registry.Central.Central#retrieveServiceTypes()
	 */
	public String retrieveServiceTypes() {

		return null;
	}

	/* (non-Javadoc)
	 * @see org.biomoby.registry.Central.Central#retrieveObjectNames()
	 */
	public String retrieveObjectNames() {

		return null;
	}

	/* (non-Javadoc)
	 * @see org.biomoby.registry.Central.Central#retrieveObjectDefinitions(java.lang.String)
	 */
	public String retrieveObjectDefinitions(String query) {
		Document doc = null;
		
		// now extract the elements from the DOM doc
		return null;
	}

	/* (non-Javadoc)
	 * @see org.biomoby.registry.Central.Central#retrieveNamespaces()
	 */
	public String retrieveNamespaces() {

		return null;
	}

	/* (non-Javadoc)
	 * @see org.biomoby.registry.Central.Central#retrieveObjectSchema(java.lang.String)
	 */
	public String retrieveObjectSchema(String query) {
		Document doc = null;
		
		// now extract the elements from the DOM doc
		return null;
	}

	/* (non-Javadoc)
	 * @see org.biomoby.registry.Central.Central#Relationships(java.lang.String)
	 */
	public String Relationships(String query) {
		Document doc = null;
		
		// now extract the elements from the DOM doc
		return null;
	}
	
}
