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

org.certificateservices.messages.pkimessages.manager.MessageResponseCallback Maven / Gradle / Ivy

The newest version!
/************************************************************************
*                                                                       *
*  Certificate Service - Messages                                       *
*                                                                       *
*  This software is free software; you can redistribute it and/or       *
*  modify it under the terms of the GNU Lesser General Public License   *
*  License as published by the Free Software Foundation; either         *
*  version 3   of the License, or any later version.                    *
*                                                                       *
*  See terms of license at gnu.org.                                     *
*                                                                       *
*************************************************************************/
package org.certificateservices.messages.pkimessages.manager;

import org.certificateservices.messages.pkimessages.jaxb.PKIMessage;

/**
 * Callback interface used to signal that a response targeted for this client (i.e destinationId = current sourceId)
 * 

* Main method is responseRecieved *

* Important only messages with a destination matching this source id should be sent through * this callback. * * @author Philip Vendil * */ public interface MessageResponseCallback { /** * Method signaling that a response was received. *

* Important only messages with a destination matching this source id should be sent through * this callback. * @param responseMessage the response message that was received. */ public void responseReceived(PKIMessage responseMessage); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy