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

import org.jdom.Document;



/**
 * @author Eddie
 * created Dec 21, 2005
 */
public class RegistryImpl implements Registry {

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

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

	/* (non-Javadoc)
	 * @see org.biomoby.registry.Central.Registry#registerServiceType(java.lang.String)
	 */
	public String registerServiceType(String registrationObject) {
		Document doc = null;

		// now extract the elements from the DOM doc
		return null;
	}

	/* (non-Javadoc)
	 * @see org.biomoby.registry.Central.Registry#deregisterServiceType(java.lang.String)
	 */
	public String deregisterServiceType(String deregistrationObject) {
		Document doc = null;

		// now extract the elements from the DOM doc
		return null;
	}

	/* (non-Javadoc)
	 * @see org.biomoby.registry.Central.Registry#registerNamespace(java.lang.String)
	 */
	public String registerNamespace(String registrationObject) {
		Document doc = null;

		// now extract the elements from the DOM doc
		return null;
	}

	/* (non-Javadoc)
	 * @see org.biomoby.registry.Central.Registry#deregisterNamespace(java.lang.String)
	 */
	public String deregisterNamespace(String deregistrationObject) {
		Document doc = null;

		// now extract the elements from the DOM doc
		return null;
	}

	/* (non-Javadoc)
	 * @see org.biomoby.registry.Central.Registry#registerService(java.lang.String)
	 */
	public String registerService(String registrationObject) {
		Document doc = null;

		// now extract the elements from the DOM doc
		return null;
	}

         /**
	 * @see org.biomoby.registry.Central.Registry#deregisterService(java.lang.String)
	 * @deprecated
	 */
	public String deregisterService(String deregistrationObject) {
		Document doc = null;

		// now extract the elements from the DOM doc
		return null;
	}

}
