forked from microsoftgraph/msgraph-sdk-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApplicationAddKeyParameterSet.java
More file actions
154 lines (146 loc) · 5.02 KB
/
Copy pathApplicationAddKeyParameterSet.java
File metadata and controls
154 lines (146 loc) · 5.02 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
// Template Source: BaseMethodParameterSet.java.tt
// ------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
// ------------------------------------------------------------------------------
package com.microsoft.graph.models;
import com.microsoft.graph.models.KeyCredential;
import com.microsoft.graph.models.PasswordCredential;
import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;
import javax.annotation.Nonnull;
import javax.annotation.Nullable;
import com.google.gson.JsonObject;
import java.util.EnumSet;
import java.util.ArrayList;
// **NOTE** This file was generated by a tool and any changes will be overwritten.
/**
* The class for the Application Add Key Parameter Set.
*/
public class ApplicationAddKeyParameterSet {
/**
* The key Credential.
*
*/
@SerializedName(value = "keyCredential", alternate = {"KeyCredential"})
@Expose
@Nullable
public KeyCredential keyCredential;
/**
* The password Credential.
*
*/
@SerializedName(value = "passwordCredential", alternate = {"PasswordCredential"})
@Expose
@Nullable
public PasswordCredential passwordCredential;
/**
* The proof.
*
*/
@SerializedName(value = "proof", alternate = {"Proof"})
@Expose
@Nullable
public String proof;
/**
* Instiaciates a new ApplicationAddKeyParameterSet
*/
public ApplicationAddKeyParameterSet() {}
/**
* Instiaciates a new ApplicationAddKeyParameterSet
* @param builder builder bearing the parameters to initialize from
*/
protected ApplicationAddKeyParameterSet(@Nonnull final ApplicationAddKeyParameterSetBuilder builder) {
this.keyCredential = builder.keyCredential;
this.passwordCredential = builder.passwordCredential;
this.proof = builder.proof;
}
/**
* Gets a new builder for the body
* @return a new builder
*/
@Nonnull
public static ApplicationAddKeyParameterSetBuilder newBuilder() {
return new ApplicationAddKeyParameterSetBuilder();
}
/**
* Fluent builder for the ApplicationAddKeyParameterSet
*/
public static final class ApplicationAddKeyParameterSetBuilder {
/**
* The keyCredential parameter value
*/
@Nullable
protected KeyCredential keyCredential;
/**
* Sets the KeyCredential
* @param val the value to set it to
* @return the current builder object
*/
@Nonnull
public ApplicationAddKeyParameterSetBuilder withKeyCredential(@Nullable final KeyCredential val) {
this.keyCredential = val;
return this;
}
/**
* The passwordCredential parameter value
*/
@Nullable
protected PasswordCredential passwordCredential;
/**
* Sets the PasswordCredential
* @param val the value to set it to
* @return the current builder object
*/
@Nonnull
public ApplicationAddKeyParameterSetBuilder withPasswordCredential(@Nullable final PasswordCredential val) {
this.passwordCredential = val;
return this;
}
/**
* The proof parameter value
*/
@Nullable
protected String proof;
/**
* Sets the Proof
* @param val the value to set it to
* @return the current builder object
*/
@Nonnull
public ApplicationAddKeyParameterSetBuilder withProof(@Nullable final String val) {
this.proof = val;
return this;
}
/**
* Instanciates a new ApplicationAddKeyParameterSetBuilder
*/
@Nullable
protected ApplicationAddKeyParameterSetBuilder(){}
/**
* Buils the resulting body object to be passed to the request
* @return the body object to pass to the request
*/
@Nonnull
public ApplicationAddKeyParameterSet build() {
return new ApplicationAddKeyParameterSet(this);
}
}
/**
* Gets the functions options from the properties that have been set
* @return a list of function options for the request
*/
@Nonnull
public java.util.List<com.microsoft.graph.options.FunctionOption> getFunctionOptions() {
final ArrayList<com.microsoft.graph.options.FunctionOption> result = new ArrayList<>();
if(this.keyCredential != null) {
result.add(new com.microsoft.graph.options.FunctionOption("keyCredential", keyCredential));
}
if(this.passwordCredential != null) {
result.add(new com.microsoft.graph.options.FunctionOption("passwordCredential", passwordCredential));
}
if(this.proof != null) {
result.add(new com.microsoft.graph.options.FunctionOption("proof", proof));
}
return result;
}
}