/* * Zed Attack Proxy (ZAP) and its related class files. * * ZAP is an HTTP/HTTPS proxy for assessing web application security. * * Copyright 2010 psiinon@gmail.com * * 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.parosproxy.paros.db; public class RecordParam { private long paramId; private String site; private String type; private String name; private int used = 0; private String flags; private String values; public RecordParam(long paramId, String site, String type, String name, int used, String flags, String values) { this.paramId = paramId; this.site = site; this.type = type; this.name = name; this.used = used; this.flags = flags; this.values = values; } public long getParamId() { return paramId; } public String getSite() { return site; } public void setSite(String site) { this.site = site; } public String getName() { return name; } public String getType() { return type; } public void setType(String type) { this.type = type; } public int getUsed() { return used; } public void setUsed(int used) { this.used = used; } public String getFlags() { return flags; } public void setFlags(String flags) { this.flags = flags; } public String getValues() { return values; } public void setValues(String values) { this.values = values; } }