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

com.github.codingsoldier.paramsvalidate.bean.ResultValidate Maven / Gradle / Ivy

There is a newer version: 1.8-RELEASE
Show newest version
package com.github.codingsoldier.paramsvalidate.bean;

import java.util.Set;

/**
 * author chenpiqian
 */
public class ResultValidate {

    private boolean isPass;

    private Set msgSet;

    public ResultValidate() {
    }

    public ResultValidate(boolean isPass) {
        this.isPass = isPass;
    }

    public boolean isPass() {
        return isPass;
    }

    public void setPass(boolean pass) {
        isPass = pass;
    }

    public Set getMsgSet() {
        return msgSet;
    }

    public void setMsgSet(Set msgSet) {
        this.msgSet = msgSet;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy