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

io.mosip.authentication.common.service.websub.dto.EventInterface Maven / Gradle / Ivy

package io.mosip.authentication.common.service.websub.dto;

import java.util.Map;

/**
 * The Interface EventInterface.
 */
public interface EventInterface {
	
	/**
	 * Gets the id.
	 *
	 * @return the id
	 */
	String getId();
	
	/**
	 * Sets the id.
	 *
	 * @param id the new id
	 */
	void setId(String id);
	
	/**
	 * Gets the data.
	 *
	 * @return the data
	 */
	Map getData();
	
	/**
	 * Sets the data.
	 *
	 * @param data the data
	 */
	void setData(Map data);

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy