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

io.webfolder.cdp.event.target.AttachedToTarget Maven / Gradle / Ivy

There is a newer version: 3.0.15
Show newest version
package io.webfolder.cdp.event.target;

import io.webfolder.cdp.annotation.Domain;
import io.webfolder.cdp.annotation.EventName;
import io.webfolder.cdp.annotation.Experimental;
import io.webfolder.cdp.type.target.TargetInfo;

/**
 * Issued when attached to target because of auto-attach or attachToTarget command
 */
@Experimental
@Domain("Target")
@EventName("attachedToTarget")
public class AttachedToTarget {
    private String sessionId;

    private TargetInfo targetInfo;

    private Boolean waitingForDebugger;

    /**
     * Identifier assigned to the session used to send/receive messages.
     */
    public String getSessionId() {
        return sessionId;
    }

    /**
     * Identifier assigned to the session used to send/receive messages.
     */
    public void setSessionId(String sessionId) {
        this.sessionId = sessionId;
    }

    public TargetInfo getTargetInfo() {
        return targetInfo;
    }

    public void setTargetInfo(TargetInfo targetInfo) {
        this.targetInfo = targetInfo;
    }

    public Boolean isWaitingForDebugger() {
        return waitingForDebugger;
    }

    public void setWaitingForDebugger(Boolean waitingForDebugger) {
        this.waitingForDebugger = waitingForDebugger;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy