org.macrocloud.kernel.toolkit.api.IResultCode Maven / Gradle / Ivy
package org.macrocloud.kernel.toolkit.api;
import java.io.Serializable;
/**
* The Interface IResultCode.
*/
public interface IResultCode extends Serializable {
/**
* Gets the message.
*
* @return String the message
*/
String getMessage();
/**
* Gets the code.
*
* @return int the code
*/
int getCode();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy