-
Notifications
You must be signed in to change notification settings - Fork 144
Expand file tree
/
Copy pathClients.java
More file actions
35 lines (30 loc) · 928 Bytes
/
Clients.java
File metadata and controls
35 lines (30 loc) · 928 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
package com.auth0.json.mgmt.tenants;
import com.auth0.json.mgmt.tokenquota.ClientCredentials;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
@JsonIgnoreProperties(ignoreUnknown = true)
@JsonInclude(JsonInclude.Include.NON_NULL)
public class Clients {
@JsonProperty("client_credentials")
private ClientCredentials clientCredentials;
/**
* Default constructor for Clients.
*/
public Clients() {
}
/**
* Constructor for Clients.
*
* @param clientCredentials the client credentials
*/
public Clients(ClientCredentials clientCredentials) {
this.clientCredentials = clientCredentials;
}
/**
* @return the client credentials
*/
public ClientCredentials getClientCredentials() {
return clientCredentials;
}
}