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

com.identity4j.connector.office365.entity.Users 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 users. 
 * 
* This class is wrapper for collection to properly map list of user json to user java object. * * @author gaurav * */ @JsonIgnoreProperties(ignoreUnknown=true) public class Users { @JsonProperty("value") private List users; @JsonProperty("odata.nextLink") private String nextLink; public String getNextLink() { return nextLink; } public List getUsers() { return users; } public void setUsers(List users) { this.users = users; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy