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

io.mosip.kernel.websub.api.model.SubscriptionChangeResponse Maven / Gradle / Ivy

package io.mosip.kernel.websub.api.model;

import lombok.Data;

/**
 * Basic response model for subscribe and unsubscribe operations.
 * 
 * @author Urvil Joshi
 *
 */
@Data
public class SubscriptionChangeResponse {
	/**
	 *  Url passed for subscribe/unsubscribe operation.
	 */
	private String hubURL;
	/**
	 *  topic passed for subscribe/unsubscribe operation.
	 */
	private String topic;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy