IHelloFacet

Here's IHelloFacet again.


package org.jtrix.project.helloworld;

import org.jtrix.base.*;

public interface IHelloFacet extends IRemote
{
    public String getMessage();
}

Clearly there's not much to it. However, it's important that it implements IRemote, because this tells a node that it's okay to pass it through a mediator. All facets must implement IRemote.

Nik Silver 2002-03-09