public class io.vertx.core.http.UpgradeRejectedException extends io.vertx.core.VertxException
{
private final int status;
private final io.vertx.core.MultiMap headers;
private final io.vertx.core.buffer.Buffer body;
public void <init>(java.lang.String, int, io.vertx.core.MultiMap, io.vertx.core.buffer.Buffer)
{
io.vertx.core.http.UpgradeRejectedException v;
io.vertx.core.buffer.Buffer v;
int v;
io.vertx.core.MultiMap v;
java.lang.String v;
v := @this: io.vertx.core.http.UpgradeRejectedException;
v := @parameter: java.lang.String;
v := @parameter: int;
v := @parameter: io.vertx.core.MultiMap;
v := @parameter: io.vertx.core.buffer.Buffer;
specialinvoke v.<io.vertx.core.VertxException: void <init>(java.lang.String)>(v);
v.<io.vertx.core.http.UpgradeRejectedException: int status> = v;
v.<io.vertx.core.http.UpgradeRejectedException: io.vertx.core.MultiMap headers> = v;
v.<io.vertx.core.http.UpgradeRejectedException: io.vertx.core.buffer.Buffer body> = v;
return;
}
public int getStatus()
{
int v;
io.vertx.core.http.UpgradeRejectedException v;
v := @this: io.vertx.core.http.UpgradeRejectedException;
v = v.<io.vertx.core.http.UpgradeRejectedException: int status>;
return v;
}
public io.vertx.core.MultiMap getHeaders()
{
io.vertx.core.MultiMap v;
io.vertx.core.http.UpgradeRejectedException v;
v := @this: io.vertx.core.http.UpgradeRejectedException;
v = v.<io.vertx.core.http.UpgradeRejectedException: io.vertx.core.MultiMap headers>;
return v;
}
public io.vertx.core.buffer.Buffer getBody()
{
io.vertx.core.http.UpgradeRejectedException v;
io.vertx.core.buffer.Buffer v;
v := @this: io.vertx.core.http.UpgradeRejectedException;
v = v.<io.vertx.core.http.UpgradeRejectedException: io.vertx.core.buffer.Buffer body>;
return v;
}
}