All Downloads are FREE. Search and download functionalities are using the official Maven repository.

bboss.org.jgroups.GetStateEvent Maven / Gradle / Ivy

The newest version!
// $Id: GetStateEvent.java,v 1.6 2006/03/17 09:04:55 belaban Exp $

package bboss.org.jgroups;

/**
 * Represents a GetState event.
 * Gives access to the requestor.
 */
public class GetStateEvent {
    Object requestor=null;
    String state_id=null;

    public GetStateEvent(Object requestor, String state_id) {
        this.requestor=requestor;
        this.state_id=state_id;
    }

    public Object getRequestor() {return requestor;}

    public String getStateId() {return state_id;}

    public String toString() {return "GetStateEvent[requestor=" + requestor + ", state_id=" + state_id + ']';}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy