You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@stratos.apache.org by "Akila (JIRA)" <ji...@apache.org> on 2015/07/17 11:00:10 UTC

[jira] [Resolved] (STRATOS-1208) Typo in describing application signup error message

     [ https://issues.apache.org/jira/browse/STRATOS-1208?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Akila resolved STRATOS-1208.
----------------------------
       Resolution: Fixed
    Fix Version/s: 4.1.0

> Typo in describing application signup error message
> ---------------------------------------------------
>
>                 Key: STRATOS-1208
>                 URL: https://issues.apache.org/jira/browse/STRATOS-1208
>             Project: Stratos
>          Issue Type: Bug
>    Affects Versions: 4.1.0 Alpha
>            Reporter: Mariangela Hills
>            Priority: Minor
>             Fix For: 4.1.0
>
>
> There is a typo in the describeApplicationSignup method, which is in the RestCommandLineService.java file.
> A space is missing between Application and sign in the error message that is displayed when describing application signup information.
> "Applicationsign up not found for application"
> --------------------------------------------------------------------------------
>   public void describeApplicationSignup (String applicationId) {
>         try {
>             ApplicationSignUpBean bean = (ApplicationSignUpBean) restClient.listEntity(ENDPOINT_APPLICATION_SIGNUP.replace("{applicationId}", applicationId),
>                     ApplicationSignUpBean.class, "applicationSignup");
>             if (bean == null) {
>                 System.out.println("Applicationsign up not found for application : " + applicationId);
>                 return;
>             }
>             System.out.println("Application signup for application : " + applicationId);
>             System.out.println(getGson().toJson(bean));
>         } catch (Exception e) {
>             String message = "Could not describe application signup for application: " + applicationId;
>             printError(message, e);
>         }
>     }



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)