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

com.ifountain.opsgenie.client.model.beans.Group Maven / Gradle / Ivy

package com.ifountain.opsgenie.client.model.beans;

import java.util.List;

/**
 * Group bean
 * groups are deprecated
 */
@Deprecated
public class Group extends BeanWithId {
    private String name;
    private List users;

    /**
     * Name of group
     */
    public String getName() {
        return name;
    }

    /**
     * Sets the name of group
     */
    public void setName(String name) {
        this.name = name;
    }

    /**
     * Users of group
     */
    public List getUsers() {
        return users;
    }

    /**
     * Sets users of group
     */
    public void setUsers(List users) {
        this.users = users;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy