net.xdob.icap4j.codec.IcapRequestDecoder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of icap4j Show documentation
Show all versions of icap4j Show documentation
The ICAP Protocol Codec for Java
package net.xdob.icap4j.codec;
public class IcapRequestDecoder extends IcapMessageDecoder {
public IcapRequestDecoder() {
super();
}
@Override
protected FullIcapRequest createMessage(String[] initialLine) {
return new DefaultFullIcapRequest(IcapVersion.valueOf(initialLine[2]), IcapMethod.valueOf(initialLine[0]), initialLine[1], "");
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy