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

org.zaproxy.zap.control.ZapRelease Maven / Gradle / Ivy

Go to download

The Zed Attack Proxy (ZAP) is an easy to use integrated penetration testing tool for finding vulnerabilities in web applications. It is designed to be used by people with a wide range of security experience and as such is ideal for developers and functional testers who are new to penetration testing. ZAP provides automated scanners as well as a set of tools that allow you to find security vulnerabilities manually.

There is a newer version: 2.15.0
Show newest version
/*
 * Zed Attack Proxy (ZAP) and its related class files.
 *
 * ZAP is an HTTP/HTTPS proxy for assessing web application security.
 *
 * Copyright 2012 The ZAP Development Team
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package org.zaproxy.zap.control;

import java.net.URL;

public class ZapRelease {
    private String version;
    private URL url;
    private String fileName;
    private long size;
    private String releaseNotes;
    private URL releaseNotesUrl;
    private String hash;

    public ZapRelease() {}

    public ZapRelease(String version) {
        this.version = version;
    }

    public ZapRelease(
            String version,
            URL url,
            String fileName,
            long size,
            String releaseNotes,
            URL releaseNotesUrl,
            String hash) {
        super();
        this.version = version;
        this.url = url;
        this.fileName = fileName;
        this.size = size;
        this.releaseNotes = releaseNotes;
        this.releaseNotesUrl = releaseNotesUrl;
        this.hash = hash;
    }

    public String getVersion() {
        return version;
    }

    public void setVersion(String version) {
        this.version = version;
    }

    public URL getUrl() {
        return url;
    }

    public void setUrl(URL url) {
        this.url = url;
    }

    public URL getReleaseNotesUrl() {
        return releaseNotesUrl;
    }

    public void setReleaseNotesUrl(URL releaseNotesUrl) {
        this.releaseNotesUrl = releaseNotesUrl;
    }

    public String getFileName() {
        return fileName;
    }

    public void setFileName(String fileName) {
        this.fileName = fileName;
    }

    public long getSize() {
        return size;
    }

    public void setSize(long size) {
        this.size = size;
    }

    public String getReleaseNotes() {
        return releaseNotes;
    }

    public void setReleaseNotes(String releaseNotes) {
        this.releaseNotes = releaseNotes;
    }

    public boolean isNewerThan(String otherVersion) {
        ZapReleaseComparitor zrc = new ZapReleaseComparitor();
        return zrc.compare(this, new ZapRelease(otherVersion)) > 0;
    }

    public boolean isOlderThan(String otherVersion) {
        ZapReleaseComparitor zrc = new ZapReleaseComparitor();
        return zrc.compare(this, new ZapRelease(otherVersion)) < 0;
    }

    public String getHash() {
        return hash;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy