From 4005c7bcce2f79d1eea0e285ac40ca931f4cc885 Mon Sep 17 00:00:00 2001 From: alena Date: Mon, 20 Jun 2011 16:22:22 -0700 Subject: [PATCH] bug 10193: modified description field for login api call in API docs status 10193: resolved fixed --- server/src/com/cloud/api/doc/ApiXmlDocWriter.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/src/com/cloud/api/doc/ApiXmlDocWriter.java b/server/src/com/cloud/api/doc/ApiXmlDocWriter.java index 23cf1e0c0fc..2c8ed0c9bd0 100644 --- a/server/src/com/cloud/api/doc/ApiXmlDocWriter.java +++ b/server/src/com/cloud/api/doc/ApiXmlDocWriter.java @@ -346,7 +346,7 @@ public class ApiXmlDocWriter { // Generate request request.add(new Argument("username", "Username", true)); - request.add(new Argument("password", "Password", true)); + request.add(new Argument("password", "Hashed password (Default is MD5). If you wish to use any other hashing algorithm, you would need to write a custom authentication adapter See Docs section.", true)); request.add(new Argument("domain", "path of the domain that the user belongs to. Example: domain=/com/cloud/internal. If no domain is passed in, the ROOT domain is assumed.", false)); apiCommand.setRequest(request);