org.jgroups.protocols.SaslHeader Maven / Gradle / Ivy
Go to download
This artifact provides a single jar that contains all classes required to use remote EJB and JMS, including
all dependencies. It is intended for use by those not using maven, maven users should just import the EJB and
JMS BOM's instead (shaded JAR's cause lots of problems with maven, as it is very easy to inadvertently end up
with different versions on classes on the class path).
package org.jgroups.protocols;
import org.jgroups.Header;
import org.jgroups.util.Util;
import java.io.DataInput;
import java.io.DataOutput;
import java.io.IOException;
import java.util.function.Supplier;
public class SaslHeader extends Header {
public enum Type {
CHALLENGE, RESPONSE
};
private Type type;
private byte[] payload;
public SaslHeader() {
}
public SaslHeader(Type type, byte[] payload) {
this.type = type;
this.payload = payload;
}
public short getMagicId() {return 85;}
public byte[] getPayload() {
return payload;
}
public void setPayload(byte[] payload) {
this.payload = payload;
}
public Type getType() {
return type;
}
public void setType(Type type) {
this.type = type;
}
public SaslHeader payload(byte[] payload) {
this.payload = payload;
return this;
}
public byte[] token() {
return payload;
}
public SaslHeader type(Type type) {
this.type = type;
return this;
}
public Supplier extends Header> create() {
return SaslHeader::new;
}
@Override
public void writeTo(DataOutput out) throws IOException {
out.writeByte(type.ordinal());
Util.writeByteBuffer(payload, out);
}
@Override
public void readFrom(DataInput in) throws IOException {
type = Type.values()[in.readByte()];
payload = Util.readByteBuffer(in);
}
@Override
public int serializedSize() {
return Util.size(payload);
}
@Override
public String toString() {
return "SaslHeader{" +
"type=" + type +
", serializedSize=" + this.serializedSize() +
", prot_id=" + prot_id +
'}';
}
}