/sdk/apimanagement/mgmt-v2019_12_01/src/main/java/com/microsoft/azure/management/apimanagement/v2019_12_01/implementation/AuthorizationServerContractInner.java

http://github.com/WindowsAzure/azure-sdk-for-java · Java · 462 lines · 157 code · 51 blank · 254 comment · 0 complexity · 2211198deec8bd1d34c2590f7af17678 MD5 · raw file

  1. /**
  2. * Copyright (c) Microsoft Corporation. All rights reserved.
  3. * Licensed under the MIT License. See License.txt in the project root for
  4. * license information.
  5. *
  6. * Code generated by Microsoft (R) AutoRest Code Generator.
  7. */
  8. package com.microsoft.azure.management.apimanagement.v2019_12_01.implementation;
  9. import java.util.List;
  10. import com.microsoft.azure.management.apimanagement.v2019_12_01.AuthorizationMethod;
  11. import com.microsoft.azure.management.apimanagement.v2019_12_01.ClientAuthenticationMethod;
  12. import com.microsoft.azure.management.apimanagement.v2019_12_01.TokenBodyParameterContract;
  13. import com.microsoft.azure.management.apimanagement.v2019_12_01.BearerTokenSendingMethod;
  14. import com.microsoft.azure.management.apimanagement.v2019_12_01.GrantType;
  15. import com.fasterxml.jackson.annotation.JsonProperty;
  16. import com.microsoft.rest.serializer.JsonFlatten;
  17. import com.microsoft.azure.ProxyResource;
  18. /**
  19. * External OAuth authorization server settings.
  20. */
  21. @JsonFlatten
  22. public class AuthorizationServerContractInner extends ProxyResource {
  23. /**
  24. * Description of the authorization server. Can contain HTML formatting
  25. * tags.
  26. */
  27. @JsonProperty(value = "properties.description")
  28. private String description;
  29. /**
  30. * HTTP verbs supported by the authorization endpoint. GET must be always
  31. * present. POST is optional.
  32. */
  33. @JsonProperty(value = "properties.authorizationMethods")
  34. private List<AuthorizationMethod> authorizationMethods;
  35. /**
  36. * Method of authentication supported by the token endpoint of this
  37. * authorization server. Possible values are Basic and/or Body. When Body
  38. * is specified, client credentials and other parameters are passed within
  39. * the request body in the application/x-www-form-urlencoded format.
  40. */
  41. @JsonProperty(value = "properties.clientAuthenticationMethod")
  42. private List<ClientAuthenticationMethod> clientAuthenticationMethod;
  43. /**
  44. * Additional parameters required by the token endpoint of this
  45. * authorization server represented as an array of JSON objects with name
  46. * and value string properties, i.e. {"name" : "name value", "value": "a
  47. * value"}.
  48. */
  49. @JsonProperty(value = "properties.tokenBodyParameters")
  50. private List<TokenBodyParameterContract> tokenBodyParameters;
  51. /**
  52. * OAuth token endpoint. Contains absolute URI to entity being referenced.
  53. */
  54. @JsonProperty(value = "properties.tokenEndpoint")
  55. private String tokenEndpoint;
  56. /**
  57. * If true, authorization server will include state parameter from the
  58. * authorization request to its response. Client may use state parameter to
  59. * raise protocol security.
  60. */
  61. @JsonProperty(value = "properties.supportState")
  62. private Boolean supportState;
  63. /**
  64. * Access token scope that is going to be requested by default. Can be
  65. * overridden at the API level. Should be provided in the form of a string
  66. * containing space-delimited values.
  67. */
  68. @JsonProperty(value = "properties.defaultScope")
  69. private String defaultScope;
  70. /**
  71. * Specifies the mechanism by which access token is passed to the API.
  72. */
  73. @JsonProperty(value = "properties.bearerTokenSendingMethods")
  74. private List<BearerTokenSendingMethod> bearerTokenSendingMethods;
  75. /**
  76. * Can be optionally specified when resource owner password grant type is
  77. * supported by this authorization server. Default resource owner username.
  78. */
  79. @JsonProperty(value = "properties.resourceOwnerUsername")
  80. private String resourceOwnerUsername;
  81. /**
  82. * Can be optionally specified when resource owner password grant type is
  83. * supported by this authorization server. Default resource owner password.
  84. */
  85. @JsonProperty(value = "properties.resourceOwnerPassword")
  86. private String resourceOwnerPassword;
  87. /**
  88. * User-friendly authorization server name.
  89. */
  90. @JsonProperty(value = "properties.displayName", required = true)
  91. private String displayName;
  92. /**
  93. * Optional reference to a page where client or app registration for this
  94. * authorization server is performed. Contains absolute URL to entity being
  95. * referenced.
  96. */
  97. @JsonProperty(value = "properties.clientRegistrationEndpoint", required = true)
  98. private String clientRegistrationEndpoint;
  99. /**
  100. * OAuth authorization endpoint. See
  101. * http://tools.ietf.org/html/rfc6749#section-3.2.
  102. */
  103. @JsonProperty(value = "properties.authorizationEndpoint", required = true)
  104. private String authorizationEndpoint;
  105. /**
  106. * Form of an authorization grant, which the client uses to request the
  107. * access token.
  108. */
  109. @JsonProperty(value = "properties.grantTypes", required = true)
  110. private List<GrantType> grantTypes;
  111. /**
  112. * Client or app id registered with this authorization server.
  113. */
  114. @JsonProperty(value = "properties.clientId", required = true)
  115. private String clientId;
  116. /**
  117. * Client or app secret registered with this authorization server. This
  118. * property will not be filled on 'GET' operations! Use '/listSecrets' POST
  119. * request to get the value.
  120. */
  121. @JsonProperty(value = "properties.clientSecret")
  122. private String clientSecret;
  123. /**
  124. * Get description of the authorization server. Can contain HTML formatting tags.
  125. *
  126. * @return the description value
  127. */
  128. public String description() {
  129. return this.description;
  130. }
  131. /**
  132. * Set description of the authorization server. Can contain HTML formatting tags.
  133. *
  134. * @param description the description value to set
  135. * @return the AuthorizationServerContractInner object itself.
  136. */
  137. public AuthorizationServerContractInner withDescription(String description) {
  138. this.description = description;
  139. return this;
  140. }
  141. /**
  142. * Get hTTP verbs supported by the authorization endpoint. GET must be always present. POST is optional.
  143. *
  144. * @return the authorizationMethods value
  145. */
  146. public List<AuthorizationMethod> authorizationMethods() {
  147. return this.authorizationMethods;
  148. }
  149. /**
  150. * Set hTTP verbs supported by the authorization endpoint. GET must be always present. POST is optional.
  151. *
  152. * @param authorizationMethods the authorizationMethods value to set
  153. * @return the AuthorizationServerContractInner object itself.
  154. */
  155. public AuthorizationServerContractInner withAuthorizationMethods(List<AuthorizationMethod> authorizationMethods) {
  156. this.authorizationMethods = authorizationMethods;
  157. return this;
  158. }
  159. /**
  160. * Get method of authentication supported by the token endpoint of this authorization server. Possible values are Basic and/or Body. When Body is specified, client credentials and other parameters are passed within the request body in the application/x-www-form-urlencoded format.
  161. *
  162. * @return the clientAuthenticationMethod value
  163. */
  164. public List<ClientAuthenticationMethod> clientAuthenticationMethod() {
  165. return this.clientAuthenticationMethod;
  166. }
  167. /**
  168. * Set method of authentication supported by the token endpoint of this authorization server. Possible values are Basic and/or Body. When Body is specified, client credentials and other parameters are passed within the request body in the application/x-www-form-urlencoded format.
  169. *
  170. * @param clientAuthenticationMethod the clientAuthenticationMethod value to set
  171. * @return the AuthorizationServerContractInner object itself.
  172. */
  173. public AuthorizationServerContractInner withClientAuthenticationMethod(List<ClientAuthenticationMethod> clientAuthenticationMethod) {
  174. this.clientAuthenticationMethod = clientAuthenticationMethod;
  175. return this;
  176. }
  177. /**
  178. * Get additional parameters required by the token endpoint of this authorization server represented as an array of JSON objects with name and value string properties, i.e. {"name" : "name value", "value": "a value"}.
  179. *
  180. * @return the tokenBodyParameters value
  181. */
  182. public List<TokenBodyParameterContract> tokenBodyParameters() {
  183. return this.tokenBodyParameters;
  184. }
  185. /**
  186. * Set additional parameters required by the token endpoint of this authorization server represented as an array of JSON objects with name and value string properties, i.e. {"name" : "name value", "value": "a value"}.
  187. *
  188. * @param tokenBodyParameters the tokenBodyParameters value to set
  189. * @return the AuthorizationServerContractInner object itself.
  190. */
  191. public AuthorizationServerContractInner withTokenBodyParameters(List<TokenBodyParameterContract> tokenBodyParameters) {
  192. this.tokenBodyParameters = tokenBodyParameters;
  193. return this;
  194. }
  195. /**
  196. * Get oAuth token endpoint. Contains absolute URI to entity being referenced.
  197. *
  198. * @return the tokenEndpoint value
  199. */
  200. public String tokenEndpoint() {
  201. return this.tokenEndpoint;
  202. }
  203. /**
  204. * Set oAuth token endpoint. Contains absolute URI to entity being referenced.
  205. *
  206. * @param tokenEndpoint the tokenEndpoint value to set
  207. * @return the AuthorizationServerContractInner object itself.
  208. */
  209. public AuthorizationServerContractInner withTokenEndpoint(String tokenEndpoint) {
  210. this.tokenEndpoint = tokenEndpoint;
  211. return this;
  212. }
  213. /**
  214. * Get if true, authorization server will include state parameter from the authorization request to its response. Client may use state parameter to raise protocol security.
  215. *
  216. * @return the supportState value
  217. */
  218. public Boolean supportState() {
  219. return this.supportState;
  220. }
  221. /**
  222. * Set if true, authorization server will include state parameter from the authorization request to its response. Client may use state parameter to raise protocol security.
  223. *
  224. * @param supportState the supportState value to set
  225. * @return the AuthorizationServerContractInner object itself.
  226. */
  227. public AuthorizationServerContractInner withSupportState(Boolean supportState) {
  228. this.supportState = supportState;
  229. return this;
  230. }
  231. /**
  232. * Get access token scope that is going to be requested by default. Can be overridden at the API level. Should be provided in the form of a string containing space-delimited values.
  233. *
  234. * @return the defaultScope value
  235. */
  236. public String defaultScope() {
  237. return this.defaultScope;
  238. }
  239. /**
  240. * Set access token scope that is going to be requested by default. Can be overridden at the API level. Should be provided in the form of a string containing space-delimited values.
  241. *
  242. * @param defaultScope the defaultScope value to set
  243. * @return the AuthorizationServerContractInner object itself.
  244. */
  245. public AuthorizationServerContractInner withDefaultScope(String defaultScope) {
  246. this.defaultScope = defaultScope;
  247. return this;
  248. }
  249. /**
  250. * Get specifies the mechanism by which access token is passed to the API.
  251. *
  252. * @return the bearerTokenSendingMethods value
  253. */
  254. public List<BearerTokenSendingMethod> bearerTokenSendingMethods() {
  255. return this.bearerTokenSendingMethods;
  256. }
  257. /**
  258. * Set specifies the mechanism by which access token is passed to the API.
  259. *
  260. * @param bearerTokenSendingMethods the bearerTokenSendingMethods value to set
  261. * @return the AuthorizationServerContractInner object itself.
  262. */
  263. public AuthorizationServerContractInner withBearerTokenSendingMethods(List<BearerTokenSendingMethod> bearerTokenSendingMethods) {
  264. this.bearerTokenSendingMethods = bearerTokenSendingMethods;
  265. return this;
  266. }
  267. /**
  268. * Get can be optionally specified when resource owner password grant type is supported by this authorization server. Default resource owner username.
  269. *
  270. * @return the resourceOwnerUsername value
  271. */
  272. public String resourceOwnerUsername() {
  273. return this.resourceOwnerUsername;
  274. }
  275. /**
  276. * Set can be optionally specified when resource owner password grant type is supported by this authorization server. Default resource owner username.
  277. *
  278. * @param resourceOwnerUsername the resourceOwnerUsername value to set
  279. * @return the AuthorizationServerContractInner object itself.
  280. */
  281. public AuthorizationServerContractInner withResourceOwnerUsername(String resourceOwnerUsername) {
  282. this.resourceOwnerUsername = resourceOwnerUsername;
  283. return this;
  284. }
  285. /**
  286. * Get can be optionally specified when resource owner password grant type is supported by this authorization server. Default resource owner password.
  287. *
  288. * @return the resourceOwnerPassword value
  289. */
  290. public String resourceOwnerPassword() {
  291. return this.resourceOwnerPassword;
  292. }
  293. /**
  294. * Set can be optionally specified when resource owner password grant type is supported by this authorization server. Default resource owner password.
  295. *
  296. * @param resourceOwnerPassword the resourceOwnerPassword value to set
  297. * @return the AuthorizationServerContractInner object itself.
  298. */
  299. public AuthorizationServerContractInner withResourceOwnerPassword(String resourceOwnerPassword) {
  300. this.resourceOwnerPassword = resourceOwnerPassword;
  301. return this;
  302. }
  303. /**
  304. * Get user-friendly authorization server name.
  305. *
  306. * @return the displayName value
  307. */
  308. public String displayName() {
  309. return this.displayName;
  310. }
  311. /**
  312. * Set user-friendly authorization server name.
  313. *
  314. * @param displayName the displayName value to set
  315. * @return the AuthorizationServerContractInner object itself.
  316. */
  317. public AuthorizationServerContractInner withDisplayName(String displayName) {
  318. this.displayName = displayName;
  319. return this;
  320. }
  321. /**
  322. * Get optional reference to a page where client or app registration for this authorization server is performed. Contains absolute URL to entity being referenced.
  323. *
  324. * @return the clientRegistrationEndpoint value
  325. */
  326. public String clientRegistrationEndpoint() {
  327. return this.clientRegistrationEndpoint;
  328. }
  329. /**
  330. * Set optional reference to a page where client or app registration for this authorization server is performed. Contains absolute URL to entity being referenced.
  331. *
  332. * @param clientRegistrationEndpoint the clientRegistrationEndpoint value to set
  333. * @return the AuthorizationServerContractInner object itself.
  334. */
  335. public AuthorizationServerContractInner withClientRegistrationEndpoint(String clientRegistrationEndpoint) {
  336. this.clientRegistrationEndpoint = clientRegistrationEndpoint;
  337. return this;
  338. }
  339. /**
  340. * Get oAuth authorization endpoint. See http://tools.ietf.org/html/rfc6749#section-3.2.
  341. *
  342. * @return the authorizationEndpoint value
  343. */
  344. public String authorizationEndpoint() {
  345. return this.authorizationEndpoint;
  346. }
  347. /**
  348. * Set oAuth authorization endpoint. See http://tools.ietf.org/html/rfc6749#section-3.2.
  349. *
  350. * @param authorizationEndpoint the authorizationEndpoint value to set
  351. * @return the AuthorizationServerContractInner object itself.
  352. */
  353. public AuthorizationServerContractInner withAuthorizationEndpoint(String authorizationEndpoint) {
  354. this.authorizationEndpoint = authorizationEndpoint;
  355. return this;
  356. }
  357. /**
  358. * Get form of an authorization grant, which the client uses to request the access token.
  359. *
  360. * @return the grantTypes value
  361. */
  362. public List<GrantType> grantTypes() {
  363. return this.grantTypes;
  364. }
  365. /**
  366. * Set form of an authorization grant, which the client uses to request the access token.
  367. *
  368. * @param grantTypes the grantTypes value to set
  369. * @return the AuthorizationServerContractInner object itself.
  370. */
  371. public AuthorizationServerContractInner withGrantTypes(List<GrantType> grantTypes) {
  372. this.grantTypes = grantTypes;
  373. return this;
  374. }
  375. /**
  376. * Get client or app id registered with this authorization server.
  377. *
  378. * @return the clientId value
  379. */
  380. public String clientId() {
  381. return this.clientId;
  382. }
  383. /**
  384. * Set client or app id registered with this authorization server.
  385. *
  386. * @param clientId the clientId value to set
  387. * @return the AuthorizationServerContractInner object itself.
  388. */
  389. public AuthorizationServerContractInner withClientId(String clientId) {
  390. this.clientId = clientId;
  391. return this;
  392. }
  393. /**
  394. * Get client or app secret registered with this authorization server. This property will not be filled on 'GET' operations! Use '/listSecrets' POST request to get the value.
  395. *
  396. * @return the clientSecret value
  397. */
  398. public String clientSecret() {
  399. return this.clientSecret;
  400. }
  401. /**
  402. * Set client or app secret registered with this authorization server. This property will not be filled on 'GET' operations! Use '/listSecrets' POST request to get the value.
  403. *
  404. * @param clientSecret the clientSecret value to set
  405. * @return the AuthorizationServerContractInner object itself.
  406. */
  407. public AuthorizationServerContractInner withClientSecret(String clientSecret) {
  408. this.clientSecret = clientSecret;
  409. return this;
  410. }
  411. }