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

org.openl.rules.rest.model.GroupModel Maven / Gradle / Ivy

There is a newer version: 5.27.9
Show newest version
package org.openl.rules.rest.model;

public class GroupModel {

    private String name;

    private GroupType type;

    public String getName() {
        return name;
    }

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

    public GroupType getType() {
        return type;
    }

    public GroupModel setType(GroupType type) {
        this.type = type;
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy