From fde14168791505204d38503d12f1ba04ef1163da Mon Sep 17 00:00:00 2001 From: Chris Tavares Date: Mon, 4 Feb 2013 17:21:14 -0800 Subject: [PATCH] Adding javadocs for missing parameters --- .../serviceBus/ServiceBusConfiguration.java | 45 +++++++++++++++++-- 1 file changed, 42 insertions(+), 3 deletions(-) diff --git a/microsoft-azure-api/src/main/java/com/microsoft/windowsazure/services/serviceBus/ServiceBusConfiguration.java b/microsoft-azure-api/src/main/java/com/microsoft/windowsazure/services/serviceBus/ServiceBusConfiguration.java index 5ad1631e8ebbc..eb01a664440ea 100644 --- a/microsoft-azure-api/src/main/java/com/microsoft/windowsazure/services/serviceBus/ServiceBusConfiguration.java +++ b/microsoft-azure-api/src/main/java/com/microsoft/windowsazure/services/serviceBus/ServiceBusConfiguration.java @@ -64,7 +64,20 @@ public class ServiceBusConfiguration { * * @param authenticationPassword * A String object that represents the authentication password. - * + * + * @param serviceBusRootUri + * A String object containing the base URI that is added to your + * Service Bus namespace to form the URI to connect to the Service Bus service. + * + * To access the default public Azure service, pass ".servicebus.windows.net" + * + * @param wrapRootUri + * A String object containing the base URI that is added to your + * Service Bus namespace to form the URI to get an access token for the Service + * Bus service. + * + * To access the default public Azure service, pass "-sb.accesscontrol.windows.net/WRAPv0.9" + * * @return * A Configuration object that can be used when creating an instance of the * ServiceBusService class. @@ -90,7 +103,20 @@ public static Configuration configureWithWrapAuthentication(String namespace, St * * @param authenticationPassword * A String object that represents the authentication password. - * + * + * @param serviceBusRootUri + * A String object containing the base URI that is added to your + * Service Bus namespace to form the URI to connect to the Service Bus service. + * + * To access the default public Azure service, pass ".servicebus.windows.net" + * + * @param wrapRootUri + * A String object containing the base URI that is added to your + * Service Bus namespace to form the URI to get an access token for the Service + * Bus service. + * + * To access the default public Azure service, pass "-sb.accesscontrol.windows.net/WRAPv0.9" + * * @return * A Configuration object that can be used when creating an instance of the * ServiceBusService class. @@ -119,7 +145,20 @@ public static Configuration configureWithWrapAuthentication(Configuration config * * @param authenticationPassword * A String object that represents the authentication password. - * + * + * @param serviceBusRootUri + * A String object containing the base URI that is added to your + * Service Bus namespace to form the URI to connect to the Service Bus service. + * + * To access the default public Azure service, pass ".servicebus.windows.net" + * + * @param wrapRootUri + * A String object containing the base URI that is added to your + * Service Bus namespace to form the URI to get an access token for the Service + * Bus service. + * + * To access the default public Azure service, pass "-sb.accesscontrol.windows.net/WRAPv0.9" + * * @return * A Configuration object that can be used when creating an instance of the * ServiceBusService class.