Initial checkin of ye ole' pluggable interface for authorizing player

communication.


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@2714 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Eric Lundberg
2003-07-18 01:54:51 +00:00
parent 7efc5dfc32
commit c2a5e8966b
@@ -0,0 +1,15 @@
//
// $Id: CommunicationAuthorizer.java,v 1.1 2003/07/18 01:54:51 eric Exp $
package com.threerings.crowd.chat.server;
import com.threerings.presents.data.ClientObject;
/**
* An interface used to check and see if the specified client is allowed
* to make said communication.
*/
public interface CommunicationAuthorizer
{
public boolean authorized (ClientObject caller);
}