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

com.seleniumtests.util.har.Content Maven / Gradle / Ivy

The newest version!
package com.seleniumtests.util.har;

public class Content {
    private String mimeType;
    private int size;
    private String text;

    public Content(String mimeType, int size, String text) {
        this.mimeType = mimeType;
        this.size = size;
        this.text = text;
    }

    public String getMimeType() {
        return mimeType;
    }

    public int getSize() {
        return size;
    }

    public String getText() {
        return text;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy