Repository: stratos Updated Branches: refs/heads/stratos-4.1.x bc54ffbf8 -> 870d4132f
Update method comments Project: http://git-wip-us.apache.org/repos/asf/stratos/repo Commit: http://git-wip-us.apache.org/repos/asf/stratos/commit/81e4f94d Tree: http://git-wip-us.apache.org/repos/asf/stratos/tree/81e4f94d Diff: http://git-wip-us.apache.org/repos/asf/stratos/diff/81e4f94d Branch: refs/heads/stratos-4.1.x Commit: 81e4f94d8b6249aecd217541b07695f220aed4be Parents: bc54ffb Author: gayangunarathne <[email protected]> Authored: Thu Sep 10 17:23:45 2015 +0530 Committer: gayangunarathne <[email protected]> Committed: Thu Sep 10 17:23:45 2015 +0530 ---------------------------------------------------------------------- .../org/apache/stratos/rest/endpoint/api/StratosApiV41.java | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/stratos/blob/81e4f94d/components/org.apache.stratos.rest.endpoint/src/main/java/org/apache/stratos/rest/endpoint/api/StratosApiV41.java ---------------------------------------------------------------------- diff --git a/components/org.apache.stratos.rest.endpoint/src/main/java/org/apache/stratos/rest/endpoint/api/StratosApiV41.java b/components/org.apache.stratos.rest.endpoint/src/main/java/org/apache/stratos/rest/endpoint/api/StratosApiV41.java index 3c2a5bc..3f7237f 100644 --- a/components/org.apache.stratos.rest.endpoint/src/main/java/org/apache/stratos/rest/endpoint/api/StratosApiV41.java +++ b/components/org.apache.stratos.rest.endpoint/src/main/java/org/apache/stratos/rest/endpoint/api/StratosApiV41.java @@ -1129,10 +1129,11 @@ public class StratosApiV41 extends AbstractApi { } /** - * Signs up for an application. + * Signs up for an application on behalf of tenant. * * @param applicationId the application id * @param applicationSignUpBean the application sign up bean + * @param tenantDomain the tenant domain * @return 200 if application sign up was successfull * @throws RestAPIException the rest api exception */ @@ -1160,9 +1161,10 @@ public class StratosApiV41 extends AbstractApi { /** - * Removes the application sign up. + * Removes the application sign up on behalf of tenant. * * @param applicationId the application id + * @param tenantDomain the tenant domain * @return 200 if specified application sign up is removed * @throws RestAPIException the rest api exception */
