![JAR search and dependency download from the Maven repository](/logo.png)
org.bdware.doip.cluster.SpannableDoipMessage 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;
import io.opentracing.Span;
import org.bdware.doip.codec.doipMessage.DoipMessage;
public class SpannableDoipMessage extends DoipMessage {
public Span span;
public SpannableDoipMessage(String id, String opCode) {
super(id, opCode);
}
public SpannableDoipMessage clone() {
DoipMessage content = super.clone();
SpannableDoipMessage ret = new SpannableDoipMessage(null, null);
ret.header = content.header;
ret.body = content.body;
ret.credential = content.credential;
ret.span = this.span;
return ret;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy