Skip to content

Commit

Permalink
Merge pull request wso2-extensions#189 from Sachin-Mamoru/resolved-co…
Browse files Browse the repository at this point in the history
…mments

Added doc comments for public methods
  • Loading branch information
chamathns authored Feb 14, 2023
2 parents e8a4393 + 4e8dc26 commit 047abce
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,6 @@ public boolean doPostGetServiceProvider(ServiceProvider serviceProvider, String
("Error while retrieving the fragment application details.", e);
}
}

return super.doPostGetServiceProvider(serviceProvider, applicationName, tenantDomain);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,19 @@ public MainApplicationDO(String organizationId, String mainApplicationId) {
this.mainApplicationId = mainApplicationId;
}

/**
* Get the Organization Id.
* @return {@link String} : OrganizationId.
*/
public String getOrganizationId() {

return organizationId;
}

/**
* Get the Main Application Id.
* @return {@link String} : MainApplicationId.
*/
public String getMainApplicationId() {

return mainApplicationId;
Expand Down

0 comments on commit 047abce

Please sign in to comment.