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

com.github.mike10004.chromecookieimplant.CookieImplantOutput Maven / Gradle / Ivy

Go to download

The newest version!
package com.github.mike10004.chromecookieimplant;

import java.util.List;

/**
 * Value class that represents the collection of results of an attempt to
 * implant cookies.
 */
public class CookieImplantOutput {

    /**
     * Cookie processing status.
     */
    public CookieProcessingStatus status;

    /**
     * List of implant results.
     */
    public List implants;

    @Override
    public String toString() {
        List implants_ = implants;
        return "CookieImplantOutput{" +
                "status=" + status +
                ", implants.size=" + (implants_ == null ? -1 : implants_.size()) +
                '}';
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy