![JAR search and dependency download from the Maven repository](/logo.png)
org.bdware.doip.cluster.entity.DoipInvocation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of doip-audit-tool Show documentation
Show all versions of doip-audit-tool Show documentation
doip audit tool developed by bdware
The newest version!
package org.bdware.doip.cluster.entity;
import org.bdware.doip.codec.doipMessage.DoipMessage;
import org.bdware.doip.codec.doipMessage.DoipResponseCode;
public class DoipInvocation {
public String doid;
public DoipMessage request;
public DoipMessage response;
public DoipInvocation(String doid, DoipMessage request, DoipMessage response) {
this.doid = doid;
this.request = request;
this.response = response;
}
public boolean isSuccess() {
return response != null && response.header.parameters.response == DoipResponseCode.Success;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy