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

com.fastchar.core.FastRequestParam Maven / Gradle / Ivy

Go to download

FastChar is Web+ORM Framework in Java Copyright (C) http://www.fastchar.com All rights reserved.

The newest version!
package com.fastchar.core;

public class FastRequestParam {
    private String name;
    private String value;

    public String getName() {
        return name;
    }

    public FastRequestParam setName(String name) {
        this.name = name;
        return this;
    }

    public String getValue() {
        return value;
    }

    public FastRequestParam setValue(String value) {
        this.value = value;
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy