All Downloads are FREE. Search and download functionalities are using the official Maven repository.

it.auties.whatsapp.model.signal.auth.HandshakeMessage Maven / Gradle / Ivy

There is a newer version: 2.7.2
Show newest version
package it.auties.whatsapp.model.signal.auth;

import it.auties.protobuf.base.ProtobufMessage;
import it.auties.protobuf.base.ProtobufProperty;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.experimental.Accessors;
import lombok.extern.jackson.Jacksonized;

import static it.auties.protobuf.base.ProtobufType.MESSAGE;

@AllArgsConstructor
@Data
@Builder
@Jacksonized
@Accessors(fluent = true)
public class HandshakeMessage implements ProtobufMessage {
    @ProtobufProperty(index = 2, type = MESSAGE, implementation = ClientHello.class)
    private ClientHello clientHello;

    @ProtobufProperty(index = 3, type = MESSAGE, implementation = ServerHello.class)
    private ServerHello serverHello;

    @ProtobufProperty(index = 4, type = MESSAGE, implementation = ClientFinish.class)
    private ClientFinish clientFinish;

    public HandshakeMessage(ClientHello clientHello) {
        this.clientHello = clientHello;
    }

    public HandshakeMessage(ClientFinish clientFinish) {
        this.clientFinish = clientFinish;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy