package omq;

import java.io.Serializable;

/**
 * 
 * @author Sergi Toda <sergi.toda@estudiants.urv.cat>
 * 
 */
public interface Remote extends Serializable {

	/**
	 * Returns the UID of a RemoteObject
	 * 
	 * @return UID
	 */
	public String getRef();
}
