Skip to content

Commit

Permalink
update the comments
Browse files Browse the repository at this point in the history
  • Loading branch information
asha15 committed Sep 18, 2024
1 parent 1e4bdf5 commit 4ad6969
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ default Map<String, String> getChildAppIds(String parentAppId, String parentOrgI
}

/**
* Get the discoverable application basic info.
* Get the discoverable shared application basic info.
*
* @param limit Maximum no of applications to be returned in the result set (optional).
* @param offset Zero based index of the first application to be returned in the result set (optional).
Expand All @@ -199,7 +199,7 @@ default List<ApplicationBasicInfo> getDiscoverableSharedApplicationBasicInfo(int
}

/**
* Get the count of discoverable applications.
* Get the count of discoverable shared applications.
*
* @param filter Filter to search for applications (optional).
* @param tenantDomain Tenant domain.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ default List<SharedApplicationDO> getSharedApplications(String mainAppId, String
}

/**
* Returns the basic information of the shared applications
* Returns the basic information of the discoverable shared applications
*
* @param limit Maximum no of applications to be returned in the result set (optional).
* @param offset Zero based index of the first application to be returned in the result set (optional).
Expand All @@ -160,7 +160,7 @@ List<ApplicationBasicInfo> getDiscoverableSharedApplicationBasicInfo(int limit,
throws OrganizationManagementException;

/**
* Returns the count of discoverable applications matching given filter.
* Returns the count of discoverable shared applications matching given filter.
*
* @param filter Filter to search for applications (optional).
* @param tenantDomain Tenant domain.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,6 @@ public List<ApplicationBasicInfo> getDiscoverableSharedApplicationBasicInfo(int
throw new OrganizationManagementException("Error while getting application basic information" +
" for discoverable applications in tenantDomain: " + tenantDomain, e);
}

return Collections.unmodifiableList(applicationBasicInfoList);
}

Expand Down Expand Up @@ -378,7 +377,6 @@ public int getCountOfDiscoverableSharedApplications(String filter, String tenant
throw new OrganizationManagementServerException("Error while getting count of discoverable " +
"applications matching filter:" + filter + " in tenantDomain: " + tenantDomain);
}

return count;
}

Expand All @@ -403,7 +401,6 @@ private int getCountOfDiscoverableSharedApplications(String tenantDomain, String
throw new OrganizationManagementServerException("Error while getting count of discoverable " +
"shared applications in tenantDomain: " + tenantDomain);
}

return count;
}

Expand Down Expand Up @@ -434,7 +431,6 @@ private List<ApplicationBasicInfo> getDiscoverableSharedApplicationBasicInfo(int
throw new OrganizationManagementException("Error while getting application basic information" +
" for discoverable applications in tenantDomain: " + tenantDomain, e);
}

return Collections.unmodifiableList(applicationBasicInfoList);
}

Expand Down

0 comments on commit 4ad6969

Please sign in to comment.