We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 33d16d5 commit 37afc3bCopy full SHA for 37afc3b
src/main/java/com/microsoft/graph/authentication/BaseAuthenticationProvider.java
@@ -6,6 +6,7 @@
6
import java.util.Locale;
7
8
import javax.annotation.Nonnull;
9
+import javax.annotation.Nullable;
10
11
/**
12
* Provides basic common methods for all authentication providers
@@ -30,6 +31,7 @@ public void setCustomHosts(@Nonnull String[] customHosts) {
30
31
* Get the custom hosts set by user.
32
* @return the custom hosts set by user.
33
*/
34
+ @Nullable
35
public HashSet<String> getCustomHosts(){
36
return (HashSet<String>) this.customHosts.clone();
37
}
0 commit comments