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

com.identity4j.connector.office365.entity.Groups Maven / Gradle / Ivy

There is a newer version: 1.2.2
Show newest version
package com.identity4j.connector.office365.entity;

import java.util.List;

import org.codehaus.jackson.annotate.JsonIgnoreProperties;
import org.codehaus.jackson.annotate.JsonProperty;

/**
 * Class encapsulates collection of groups. 
 * 
* This class is wrapper for collection to properly map list of group json to group java object. * * @author gaurav * */ @JsonIgnoreProperties(ignoreUnknown=true) public class Groups { @JsonProperty("value") private List groups; public List getGroups() { return groups; } public void setGroups(List groups) { this.groups = groups; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy