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

net.anotheria.moskito.extensions.monitoring.parser.StatusParser Maven / Gradle / Ivy

There is a newer version: 4.0.3
Show newest version
package net.anotheria.moskito.extensions.monitoring.parser;

/**
 * Interface for Parsers of status data.
 * @param  type of source status(value to parse).
 * @param  type of parsing result.
 * @author dzhmud
 */
public interface StatusParser {

    /**
     * Parse status of type S into the type D.
     * @param status status retrieved from application
     * @return parsed status.
     */
    D parse(S status);

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy