Skip to content

Commit

Permalink
Merge pull request #196 from MicrosoftDocs/smoke-test
Browse files Browse the repository at this point in the history
CI Update
  • Loading branch information
localden authored Jul 26, 2024
2 parents 845e688 + 22399fe commit 3dbfbd7
Show file tree
Hide file tree
Showing 91 changed files with 317 additions and 128 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -152,4 +152,4 @@ typeParameters:
- name: "T"
metadata: {}
package: "com.microsoft.aad.msal4j"
artifact: com.microsoft.azure:msal4j:1.15.0
artifact: com.microsoft.azure:msal4j:1.16.1
Original file line number Diff line number Diff line change
Expand Up @@ -107,4 +107,4 @@ implements:
- "<xref href=\"com.microsoft.aad.msal4j.IApplicationBase?alt=com.microsoft.aad.msal4j.IApplicationBase&text=IApplicationBase\" data-throw-if-not-resolved=\"False\" />"
metadata: {}
package: "com.microsoft.aad.msal4j"
artifact: com.microsoft.azure:msal4j:1.15.0
artifact: com.microsoft.azure:msal4j:1.16.1
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,66 @@ methods:
syntax: "public T clientCapabilities(Set<String> capabilities)"
returns:
type: "<xref href=\"T?alt=T&text=T\" data-throw-if-not-resolved=\"False\" />"
- uid: "com.microsoft.aad.msal4j.AbstractClientApplicationBase.Builder.connectTimeoutForDefaultHttpClient(java.lang.Integer)"
fullName: "com.microsoft.aad.msal4j.AbstractClientApplicationBase.Builder<T>.connectTimeoutForDefaultHttpClient(Integer val)"
name: "connectTimeoutForDefaultHttpClient(Integer val)"
nameWithType: "AbstractClientApplicationBase.Builder<T>.connectTimeoutForDefaultHttpClient(Integer val)"
summary: "Sets the connect timeout value used in Https<wbr>URLConnection connections made by <xref uid=\"\" data-throw-if-not-resolved=\"false\" data-raw-source=\"DefaultHttpClient\"></xref>, and is not needed if using a custom HTTP client"
overridden: "com.microsoft.aad.msal4j.AbstractApplicationBase.Builder.connectTimeoutForDefaultHttpClient(java.lang.Integer)"
parameters:
- description: "timeout value in milliseconds"
name: "val"
type: "<xref href=\"java.lang.Integer?alt=java.lang.Integer&text=Integer\" data-throw-if-not-resolved=\"False\" />"
syntax: "public T connectTimeoutForDefaultHttpClient(Integer val)"
desc: "Sets the connect timeout value used in HttpsURLConnection connections made by <xref uid=\"\" data-throw-if-not-resolved=\"false\" data-raw-source=\"DefaultHttpClient\"></xref>, and is not needed if using a custom HTTP client"
returns:
description: "instance of the Builder on which method was called"
type: "<xref href=\"T?alt=T&text=T\" data-throw-if-not-resolved=\"False\" />"
- uid: "com.microsoft.aad.msal4j.AbstractClientApplicationBase.Builder.correlationId(java.lang.String)"
fullName: "com.microsoft.aad.msal4j.AbstractClientApplicationBase.Builder<T>.correlationId(String val)"
name: "correlationId(String val)"
nameWithType: "AbstractClientApplicationBase.Builder<T>.correlationId(String val)"
summary: "Set optional correlation id to be used by the API."
overridden: "com.microsoft.aad.msal4j.AbstractApplicationBase.Builder.correlationId(java.lang.String)"
parameters:
- description: "a string value of correlation id"
name: "val"
type: "<xref href=\"java.lang.String?alt=java.lang.String&text=String\" data-throw-if-not-resolved=\"False\" />"
syntax: "public T correlationId(String val)"
desc: "Set optional correlation id to be used by the API. If not provided, the API generates a random UUID."
returns:
description: "instance of the Builder on which method was called"
type: "<xref href=\"T?alt=T&text=T\" data-throw-if-not-resolved=\"False\" />"
- uid: "com.microsoft.aad.msal4j.AbstractClientApplicationBase.Builder.executorService(java.util.concurrent.ExecutorService)"
fullName: "com.microsoft.aad.msal4j.AbstractClientApplicationBase.Builder<T>.executorService(ExecutorService val)"
name: "executorService(ExecutorService val)"
nameWithType: "AbstractClientApplicationBase.Builder<T>.executorService(ExecutorService val)"
summary: "Sets Executor<wbr>Service to be used to execute the requests."
overridden: "com.microsoft.aad.msal4j.AbstractApplicationBase.Builder.executorService(java.util.concurrent.ExecutorService)"
parameters:
- description: "an instance of ExecutorService"
name: "val"
type: "<xref href=\"java.util.concurrent.ExecutorService?alt=java.util.concurrent.ExecutorService&text=ExecutorService\" data-throw-if-not-resolved=\"False\" />"
syntax: "public T executorService(ExecutorService val)"
desc: "Sets ExecutorService to be used to execute the requests. Developer is responsible for maintaining the lifecycle of the ExecutorService."
returns:
description: "instance of the Builder on which method was called"
type: "<xref href=\"T?alt=T&text=T\" data-throw-if-not-resolved=\"False\" />"
- uid: "com.microsoft.aad.msal4j.AbstractClientApplicationBase.Builder.httpClient(com.microsoft.aad.msal4j.IHttpClient)"
fullName: "com.microsoft.aad.msal4j.AbstractClientApplicationBase.Builder<T>.httpClient(IHttpClient val)"
name: "httpClient(IHttpClient val)"
nameWithType: "AbstractClientApplicationBase.Builder<T>.httpClient(IHttpClient val)"
summary: "Sets HTTP client to be used by the client application for all HTTP requests."
overridden: "com.microsoft.aad.msal4j.AbstractApplicationBase.Builder.httpClient(com.microsoft.aad.msal4j.IHttpClient)"
parameters:
- description: "Implementation of <xref uid=\"com.microsoft.aad.msal4j.IHttpClient\" data-throw-if-not-resolved=\"false\" data-raw-source=\"IHttpClient\"></xref>"
name: "val"
type: "<xref href=\"com.microsoft.aad.msal4j.IHttpClient?alt=com.microsoft.aad.msal4j.IHttpClient&text=IHttpClient\" data-throw-if-not-resolved=\"False\" />"
syntax: "public T httpClient(IHttpClient val)"
desc: "Sets HTTP client to be used by the client application for all HTTP requests. Allows for fine grained configuration of HTTP client."
returns:
description: "instance of the Builder on which method was called"
type: "<xref href=\"T?alt=T&text=T\" data-throw-if-not-resolved=\"False\" />"
- uid: "com.microsoft.aad.msal4j.AbstractClientApplicationBase.Builder.instanceDiscovery(boolean)"
fullName: "com.microsoft.aad.msal4j.AbstractClientApplicationBase.Builder<T>.instanceDiscovery(boolean val)"
name: "instanceDiscovery(boolean val)"
Expand All @@ -179,6 +239,51 @@ methods:
desc: "Historically, MSAL would connect to a central endpoint located at \\`\\`https://login.microsoftonline.com\\`\\` to acquire some metadata, especially when using an unfamiliar authority. This behavior is known as Instance Discovery. This parameter defaults to true, which enables the Instance Discovery. If you do not know some authorities beforehand, yet still want MSAL to accept any authority that you will provide, you can use a \\`\\`False\\`\\` to unconditionally disable Instance Discovery."
returns:
type: "<xref href=\"T?alt=T&text=T\" data-throw-if-not-resolved=\"False\" />"
- uid: "com.microsoft.aad.msal4j.AbstractClientApplicationBase.Builder.logPii(boolean)"
fullName: "com.microsoft.aad.msal4j.AbstractClientApplicationBase.Builder<T>.logPii(boolean val)"
name: "logPii(boolean val)"
nameWithType: "AbstractClientApplicationBase.Builder<T>.logPii(boolean val)"
summary: "Set log<wbr>Pii - boolean value, which determines whether Pii (personally identifiable information) will be logged in."
overridden: "com.microsoft.aad.msal4j.AbstractApplicationBase.Builder.logPii(boolean)"
parameters:
- description: "a boolean value for logPii"
name: "val"
type: "<xref href=\"boolean?alt=boolean&text=boolean\" data-throw-if-not-resolved=\"False\" />"
syntax: "public T logPii(boolean val)"
desc: "Set logPii - boolean value, which determines whether Pii (personally identifiable information) will be logged in. The default value is false."
returns:
description: "instance of the Builder on which method was called"
type: "<xref href=\"T?alt=T&text=T\" data-throw-if-not-resolved=\"False\" />"
- uid: "com.microsoft.aad.msal4j.AbstractClientApplicationBase.Builder.proxy(java.net.Proxy)"
fullName: "com.microsoft.aad.msal4j.AbstractClientApplicationBase.Builder<T>.proxy(Proxy val)"
name: "proxy(Proxy val)"
nameWithType: "AbstractClientApplicationBase.Builder<T>.proxy(Proxy val)"
summary: "Sets Proxy configuration to be used by the client application (MSAL4J by default uses <xref uid=\"\" data-throw-if-not-resolved=\"false\" data-raw-source=\"javax.net.ssl.HttpsURLConnection\"></xref>) for all network communication."
overridden: "com.microsoft.aad.msal4j.AbstractApplicationBase.Builder.proxy(java.net.Proxy)"
parameters:
- description: "an instance of Proxy"
name: "val"
type: "<xref href=\"java.net.Proxy?alt=java.net.Proxy&text=Proxy\" data-throw-if-not-resolved=\"False\" />"
syntax: "public T proxy(Proxy val)"
desc: "Sets Proxy configuration to be used by the client application (MSAL4J by default uses <xref uid=\"\" data-throw-if-not-resolved=\"false\" data-raw-source=\"javax.net.ssl.HttpsURLConnection\"></xref>) for all network communication. If no proxy value is passed in, system defined properties are used. If HTTP client is set on the client application (via ClientApplication.builder().httpClient()), proxy configuration should be done on the HTTP client object being passed in, and not through this method."
returns:
description: "instance of the Builder on which method was called"
type: "<xref href=\"T?alt=T&text=T\" data-throw-if-not-resolved=\"False\" />"
- uid: "com.microsoft.aad.msal4j.AbstractClientApplicationBase.Builder.readTimeoutForDefaultHttpClient(java.lang.Integer)"
fullName: "com.microsoft.aad.msal4j.AbstractClientApplicationBase.Builder<T>.readTimeoutForDefaultHttpClient(Integer val)"
name: "readTimeoutForDefaultHttpClient(Integer val)"
nameWithType: "AbstractClientApplicationBase.Builder<T>.readTimeoutForDefaultHttpClient(Integer val)"
summary: "Sets the read timeout value used in Https<wbr>URLConnection connections made by <xref uid=\"\" data-throw-if-not-resolved=\"false\" data-raw-source=\"DefaultHttpClient\"></xref>, and is not needed if using a custom HTTP client"
overridden: "com.microsoft.aad.msal4j.AbstractApplicationBase.Builder.readTimeoutForDefaultHttpClient(java.lang.Integer)"
parameters:
- description: "timeout value in milliseconds"
name: "val"
type: "<xref href=\"java.lang.Integer?alt=java.lang.Integer&text=Integer\" data-throw-if-not-resolved=\"False\" />"
syntax: "public T readTimeoutForDefaultHttpClient(Integer val)"
desc: "Sets the read timeout value used in HttpsURLConnection connections made by <xref uid=\"\" data-throw-if-not-resolved=\"false\" data-raw-source=\"DefaultHttpClient\"></xref>, and is not needed if using a custom HTTP client"
returns:
description: "instance of the Builder on which method was called"
type: "<xref href=\"T?alt=T&text=T\" data-throw-if-not-resolved=\"False\" />"
- uid: "com.microsoft.aad.msal4j.AbstractClientApplicationBase.Builder.setTokenCacheAccessAspect(com.microsoft.aad.msal4j.ITokenCacheAccessAspect)"
fullName: "com.microsoft.aad.msal4j.AbstractClientApplicationBase.Builder<T>.setTokenCacheAccessAspect(ITokenCacheAccessAspect val)"
name: "setTokenCacheAccessAspect(ITokenCacheAccessAspect val)"
Expand All @@ -193,6 +298,21 @@ methods:
returns:
description: "instance of the Builder on which method was called"
type: "<xref href=\"T?alt=T&text=T\" data-throw-if-not-resolved=\"False\" />"
- uid: "com.microsoft.aad.msal4j.AbstractClientApplicationBase.Builder.sslSocketFactory(javax.net.ssl.SSLSocketFactory)"
fullName: "com.microsoft.aad.msal4j.AbstractClientApplicationBase.Builder<T>.sslSocketFactory(SSLSocketFactory val)"
name: "sslSocketFactory(SSLSocketFactory val)"
nameWithType: "AbstractClientApplicationBase.Builder<T>.sslSocketFactory(SSLSocketFactory val)"
summary: "Sets SSLSocket<wbr>Factory to be used by the client application for all network communication."
overridden: "com.microsoft.aad.msal4j.AbstractApplicationBase.Builder.sslSocketFactory(javax.net.ssl.SSLSocketFactory)"
parameters:
- description: "an instance of SSLSocketFactory"
name: "val"
type: "<xref href=\"javax.net.ssl.SSLSocketFactory?alt=javax.net.ssl.SSLSocketFactory&text=SSLSocketFactory\" data-throw-if-not-resolved=\"False\" />"
syntax: "public T sslSocketFactory(SSLSocketFactory val)"
desc: "Sets SSLSocketFactory to be used by the client application for all network communication. If HTTP client is set on the client application (via ClientApplication.builder().httpClient()), any configuration of SSL should be done on the HTTP client and not through this method."
returns:
description: "instance of the Builder on which method was called"
type: "<xref href=\"T?alt=T&text=T\" data-throw-if-not-resolved=\"False\" />"
- uid: "com.microsoft.aad.msal4j.AbstractClientApplicationBase.Builder.validateAuthority(boolean)"
fullName: "com.microsoft.aad.msal4j.AbstractClientApplicationBase.Builder<T>.validateAuthority(boolean val)"
name: "validateAuthority(boolean val)"
Expand All @@ -212,4 +332,4 @@ typeParameters:
- name: "T"
metadata: {}
package: "com.microsoft.aad.msal4j"
artifact: com.microsoft.azure:msal4j:1.15.0
artifact: com.microsoft.azure:msal4j:1.16.1
Original file line number Diff line number Diff line change
Expand Up @@ -206,4 +206,4 @@ implements:
- "<xref href=\"com.microsoft.aad.msal4j.IClientApplicationBase?alt=com.microsoft.aad.msal4j.IClientApplicationBase&text=IClientApplicationBase\" data-throw-if-not-resolved=\"False\" />"
metadata: {}
package: "com.microsoft.aad.msal4j"
artifact: com.microsoft.azure:msal4j:1.15.0
artifact: com.microsoft.azure:msal4j:1.16.1
Original file line number Diff line number Diff line change
Expand Up @@ -128,4 +128,4 @@ methods:
type: "class"
metadata: {}
package: "com.microsoft.aad.msal4j"
artifact: com.microsoft.azure:msal4j:1.15.0
artifact: com.microsoft.azure:msal4j:1.16.1
Original file line number Diff line number Diff line change
Expand Up @@ -344,4 +344,4 @@ type: "class"
desc: "Class containing error codes returned by the service or generated by the client"
metadata: {}
package: "com.microsoft.aad.msal4j"
artifact: com.microsoft.azure:msal4j:1.15.0
artifact: com.microsoft.azure:msal4j:1.16.1
Original file line number Diff line number Diff line change
Expand Up @@ -43,4 +43,4 @@ fields:
type: "class"
metadata: {}
package: "com.microsoft.aad.msal4j"
artifact: com.microsoft.azure:msal4j:1.15.0
artifact: com.microsoft.azure:msal4j:1.16.1
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
### YamlMime:JavaType
uid: "com.microsoft.aad.msal4j.AuthenticationResultMetadata.AuthenticationResultMetadataBuilder"
fullName: "com.microsoft.aad.msal4j.AuthenticationResultMetadata.AuthenticationResultMetadataBuilder"
name: "AuthenticationResultMetadata.AuthenticationResultMetadataBuilder"
nameWithType: "AuthenticationResultMetadata.AuthenticationResultMetadataBuilder"
inheritances:
- "<xref href=\"java.lang.Object?displayProperty=fullName\" data-throw-if-not-resolved=\"False\" />"
inheritedClassMethods:
- classRef: "<xref href=\"java.lang.Object?alt=java.lang.Object&text=Object\" data-throw-if-not-resolved=\"False\" />"
methodsRef:
- "<xref href=\"java.lang.Object.clone()?alt=java.lang.Object.clone&text=clone\" data-throw-if-not-resolved=\"False\" />"
- "<xref href=\"java.lang.Object.equals(java.lang.Object)?alt=java.lang.Object.equals&text=equals\" data-throw-if-not-resolved=\"False\" />"
- "<xref href=\"java.lang.Object.finalize()?alt=java.lang.Object.finalize&text=finalize\" data-throw-if-not-resolved=\"False\" />"
- "<xref href=\"java.lang.Object.getClass()?alt=java.lang.Object.getClass&text=getClass\" data-throw-if-not-resolved=\"False\" />"
- "<xref href=\"java.lang.Object.hashCode()?alt=java.lang.Object.hashCode&text=hashCode\" data-throw-if-not-resolved=\"False\" />"
- "<xref href=\"java.lang.Object.notify()?alt=java.lang.Object.notify&text=notify\" data-throw-if-not-resolved=\"False\" />"
- "<xref href=\"java.lang.Object.notifyAll()?alt=java.lang.Object.notifyAll&text=notifyAll\" data-throw-if-not-resolved=\"False\" />"
- "<xref href=\"java.lang.Object.toString()?alt=java.lang.Object.toString&text=toString\" data-throw-if-not-resolved=\"False\" />"
- "<xref href=\"java.lang.Object.wait()?alt=java.lang.Object.wait&text=wait\" data-throw-if-not-resolved=\"False\" />"
- "<xref href=\"java.lang.Object.wait(long)?alt=java.lang.Object.wait&text=wait\" data-throw-if-not-resolved=\"False\" />"
- "<xref href=\"java.lang.Object.wait(long,int)?alt=java.lang.Object.wait&text=wait\" data-throw-if-not-resolved=\"False\" />"
syntax: "public static class **AuthenticationResultMetadata.AuthenticationResultMetadataBuilder**"
methods:
- uid: "com.microsoft.aad.msal4j.AuthenticationResultMetadata.AuthenticationResultMetadataBuilder.build()"
fullName: "com.microsoft.aad.msal4j.AuthenticationResultMetadata.AuthenticationResultMetadataBuilder.build()"
name: "build()"
nameWithType: "AuthenticationResultMetadata.AuthenticationResultMetadataBuilder.build()"
syntax: "public AuthenticationResultMetadata build()"
returns:
type: "<xref href=\"com.microsoft.aad.msal4j.AuthenticationResultMetadata?alt=com.microsoft.aad.msal4j.AuthenticationResultMetadata&text=AuthenticationResultMetadata\" data-throw-if-not-resolved=\"False\" />"
- uid: "com.microsoft.aad.msal4j.AuthenticationResultMetadata.AuthenticationResultMetadataBuilder.refreshOn(java.lang.Long)"
fullName: "com.microsoft.aad.msal4j.AuthenticationResultMetadata.AuthenticationResultMetadataBuilder.refreshOn(Long refreshOn)"
name: "refreshOn(Long refreshOn)"
nameWithType: "AuthenticationResultMetadata.AuthenticationResultMetadataBuilder.refreshOn(Long refreshOn)"
parameters:
- name: "refreshOn"
type: "<xref href=\"java.lang.Long?alt=java.lang.Long&text=Long\" data-throw-if-not-resolved=\"False\" />"
syntax: "public AuthenticationResultMetadata.AuthenticationResultMetadataBuilder refreshOn(Long refreshOn)"
returns:
type: "<xref href=\"com.microsoft.aad.msal4j.AuthenticationResultMetadata.AuthenticationResultMetadataBuilder?alt=com.microsoft.aad.msal4j.AuthenticationResultMetadata.AuthenticationResultMetadataBuilder&text=AuthenticationResultMetadataBuilder\" data-throw-if-not-resolved=\"False\" />"
- uid: "com.microsoft.aad.msal4j.AuthenticationResultMetadata.AuthenticationResultMetadataBuilder.toString()"
fullName: "com.microsoft.aad.msal4j.AuthenticationResultMetadata.AuthenticationResultMetadataBuilder.toString()"
name: "toString()"
nameWithType: "AuthenticationResultMetadata.AuthenticationResultMetadataBuilder.toString()"
overridden: "java.lang.Object.toString()"
syntax: "public String toString()"
returns:
type: "<xref href=\"java.lang.String?alt=java.lang.String&text=String\" data-throw-if-not-resolved=\"False\" />"
- uid: "com.microsoft.aad.msal4j.AuthenticationResultMetadata.AuthenticationResultMetadataBuilder.tokenSource(com.microsoft.aad.msal4j.TokenSource)"
fullName: "com.microsoft.aad.msal4j.AuthenticationResultMetadata.AuthenticationResultMetadataBuilder.tokenSource(TokenSource tokenSource)"
name: "tokenSource(TokenSource tokenSource)"
nameWithType: "AuthenticationResultMetadata.AuthenticationResultMetadataBuilder.tokenSource(TokenSource tokenSource)"
parameters:
- name: "tokenSource"
type: "<xref href=\"com.microsoft.aad.msal4j.TokenSource?alt=com.microsoft.aad.msal4j.TokenSource&text=TokenSource\" data-throw-if-not-resolved=\"False\" />"
syntax: "public AuthenticationResultMetadata.AuthenticationResultMetadataBuilder tokenSource(TokenSource tokenSource)"
returns:
type: "<xref href=\"com.microsoft.aad.msal4j.AuthenticationResultMetadata.AuthenticationResultMetadataBuilder?alt=com.microsoft.aad.msal4j.AuthenticationResultMetadata.AuthenticationResultMetadataBuilder&text=AuthenticationResultMetadataBuilder\" data-throw-if-not-resolved=\"False\" />"
type: "class"
metadata: {}
package: "com.microsoft.aad.msal4j"
artifact: com.microsoft.azure:msal4j:1.16.1
Loading

0 comments on commit 3dbfbd7

Please sign in to comment.