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

ch.csnc.extension.ui.DriverTableModel 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.
 *
 * 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.
 *
 * Please note that this file was originally released under the
 * GNU General Public License as published by the Free Software Foundation;
 * either version 2 of the License, or (at your option) any later version
 * by Compass Security AG.
 *
 * As of October 2014 Compass Security AG granted the OWASP ZAP Project
 * permission to redistribute this code under the Apache License, Version 2.0.
 */
package ch.csnc.extension.ui;

import ch.csnc.extension.util.DriverConfiguration;
import java.util.Vector;
import javax.swing.table.AbstractTableModel;

public class DriverTableModel extends AbstractTableModel {

    private static final long serialVersionUID = -9114670362713975727L;

    private DriverConfiguration driverConfig;
    private Vector names;
    private Vector paths;
    private Vector slots;
    private Vector slotListIndexes;

    public DriverTableModel(DriverConfiguration driverConfig) {
        this.driverConfig = driverConfig;
        this.driverConfig.addChangeListener(e -> fireTableDataChanged());

        names = driverConfig.getNames();
        paths = driverConfig.getPaths();
        slots = driverConfig.getSlots();
        slotListIndexes = driverConfig.getSlotIndexes();
    }

    @Override
    public int getColumnCount() {
        return 4;
    }

    @Override
    public int getRowCount() {
        return names.size();
    }

    @Override
    public Object getValueAt(int row, int column) {
        if (column == 0) {
            return names.get(row);
        }
        if (column == 1) {
            return paths.get(row);
        }
        if (column == 2) {
            return slots.get(row);
        }
        if (column == 3) {
            return slotListIndexes.get(row);
        }

        return "";
    }

    /*default*/ int getPreferredWith(int column) {
        if (column == 0) {
            return 75;
        }
        if (column == 1) {
            return 300;
        }
        if (column == 2) {
            return 15;
        }
        if (column == 3) {
            return 15;
        }
        return 0;
    }

    /* default */ void addDriver(String name, String path, int slot, int slotListIndex) {
        names.add(name);
        paths.add(path);
        slots.add(slot);
        slotListIndexes.add(slotListIndex);

        updateConfiguration();
    }

    /* default */ void deleteDriver(int index) {
        names.remove(index);
        paths.remove(index);
        slots.remove(index);
        slotListIndexes.remove(index);

        updateConfiguration();
    }

    private void updateConfiguration() {
        driverConfig.setNames(names);
        driverConfig.setPaths(paths);
        driverConfig.setSlots(slots);
        driverConfig.setSlotListIndexes(slotListIndexes);
        driverConfig.write();
    }

    @Override
    public String getColumnName(int columnNumber) {
        if (columnNumber == 0) {
            return "Name";
        } else if (columnNumber == 1) {
            return "Path";
        } else if (columnNumber == 2) {
            return "Slot";
        } else if (columnNumber == 3) {
            return "SlotListIndex";
        } else {
            throw new IllegalArgumentException("Invalid column number: " + columnNumber);
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy