File tree Expand file tree Collapse file tree 1 file changed +20
-0
lines changed
src/main/java/org/gitlab4j/api Expand file tree Collapse file tree 1 file changed +20
-0
lines changed Original file line number Diff line number Diff line change @@ -52,6 +52,7 @@ public String getApiNamespace() {
52
52
private Session session ;
53
53
54
54
private ApplicationsApi applicationsApi ;
55
+ private ApplicationSettingsApi applicationSettingsApi ;
55
56
private AwardEmojiApi awardEmojiApi ;
56
57
private BoardsApi boardsApi ;
57
58
private CommitsApi commitsApi ;
@@ -912,6 +913,25 @@ public ApplicationsApi getApplicationsApi() {
912
913
return (applicationsApi );
913
914
}
914
915
916
+ /**
917
+ * Gets the ApplicationSettingsApi instance owned by this GitLabApi instance. The ApplicationSettingsApi is used
918
+ * to perform all application settingsrelated API calls.
919
+ *
920
+ * @return the ApplicationsApi instance owned by this GitLabApi instance
921
+ */
922
+ public ApplicationSettingsApi getApplicationSettingsApi () {
923
+
924
+ if (applicationSettingsApi == null ) {
925
+ synchronized (this ) {
926
+ if (applicationSettingsApi == null ) {
927
+ applicationSettingsApi = new ApplicationSettingsApi (this );
928
+ }
929
+ }
930
+ }
931
+
932
+ return (applicationSettingsApi );
933
+ }
934
+
915
935
/**
916
936
* Gets the AwardEmojiApi instance owned by this GitLabApi instance. The AwardEmojiApi is used
917
937
* to perform all award emoji related API calls.
You can’t perform that action at this time.
0 commit comments