Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update javadocs for ServiceBusConfiguration #216

Merged
merged 2 commits into from
Feb 5, 2013
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,20 @@ public class ServiceBusConfiguration {
*
* @param authenticationPassword
* A <code>String</code> object that represents the authentication password.
*
*
* @param serviceBusRootUri
* A <code>String</code> 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 <code>String</code> 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 <code>Configuration</code> object that can be used when creating an instance of the
* <code>ServiceBusService</code> class.
Expand All @@ -90,7 +103,20 @@ public static Configuration configureWithWrapAuthentication(String namespace, St
*
* @param authenticationPassword
* A <code>String</code> object that represents the authentication password.
*
*
* @param serviceBusRootUri
* A <code>String</code> 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 <code>String</code> 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 <code>Configuration</code> object that can be used when creating an instance of the
* <code>ServiceBusService</code> class.
Expand Down Expand Up @@ -119,7 +145,20 @@ public static Configuration configureWithWrapAuthentication(Configuration config
*
* @param authenticationPassword
* A <code>String</code> object that represents the authentication password.
*
*
* @param serviceBusRootUri
* A <code>String</code> 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 <code>String</code> 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 <code>Configuration</code> object that can be used when creating an instance of the
* <code>ServiceBusService</code> class.
Expand Down