package org.biomoby.registry.properties;

import java.util.HashMap;
import java.util.Map;

/**
 * This class encapsulates the logic needed when a OS cannot be determined.
 * 
 * @author Eddie created Nov 28, 2005
 */
public class DefaultOS implements Environment {
	/**
	 * the singleton
	 */
	public static final DefaultOS os = new DefaultOS();

	// empty
	private DefaultOS() {
	}

	/*
	 * (non-Javadoc)
	 * 
	 * @see org.biomoby.registry.properties.Environment#getEnv()
	 */
	public Map getEnv() {
		// since we dont know where we are, dont do anything!
		return new HashMap();
	}

}
