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

org.drools.userprofile.Group Maven / Gradle / Ivy

There is a newer version: 5.1.1
Show newest version
package org.drools.userprofile;

import java.util.ArrayList;
import java.util.List;

public class Group extends OrganizationalEntity {
	List members = new ArrayList();

    public Group() {
        super();
    }

    public Group(String id) {
        super( id );
    }
    
    List getMembers() {
    	return members;
    }

	public void setMembers(List members) {
		this.members = members;
	}
    
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy