/*
**	Class:			RemotePropertyImpl
**	Version:		1.1.0
**	Author:			Dario de Judicibus
**	E-mail:			dejudicibus@geocities.com
**	Created on:		June 10th, 1998
**	Changed on:		June 21st, 1998
**	Language:		Java (jdk 1.1)
**	-------------------------------------------------------------
**	(c) 1998 - All rights reserved 
**	-------------------------------------------------------------
**	I make no representations or warranties about the suitability of
**	the software, either express or implied, including but not limited
**	to the implied warranties of merchantability, fitness for a
**	particular purpose, or non-infringement. I shall not be liable for
**	any damages suffered by licensee as a result of using, modifying or
**	distributing this software or its derivatives.
*/

import java.rmi.* ;
import java.rmi.server.UnicastRemoteObject ;

/**
 *	@author Dario de Judicibus
 *	@version 1.0.0
 *	@see jdk 1.1
 *	Show the value of a remote property by using SystemProperties class
 */
public class RemotePropertyImpl
	extends UnicastRemoteObject
	implements RemoteProperty
{
	public RemotePropertyImpl( )
		throws java.rmi.RemoteException
	{
		super( ) ;
	}

	public String getValue( String propertyName ) 
		throws java.rmi.RemoteException 
	{
		return SystemProperties.getValue( propertyName ) ;
	}
}
