com.microsoft.windowsazure.services.serviceBus.ServiceBusConfiguration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of microsoft-windowsazure-api Show documentation
Show all versions of microsoft-windowsazure-api Show documentation
API for Microsoft Windows Azure Clients
/**
* Copyright Microsoft Corporation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.microsoft.windowsazure.services.serviceBus;
import com.microsoft.windowsazure.services.core.Configuration;
/**
* Provides functionality to create a service bus configuration.
*
*/
public class ServiceBusConfiguration {
/**
* Defines the configuration connection string constant.
*
*/
public final static String CONNECTION_STRING = "serviceBus.connection.string";
/**
* Defines the configuration URI constant.
*
*/
public final static String URI = "serviceBus.uri";
/**
* Defines the configuration wrap URI constant.
*
*/
public final static String WRAP_URI = "serviceBus.wrap.uri";
/**
* Defines the configuration wrap name constant.
*
*/
public final static String WRAP_NAME = "serviceBus.wrap.name";
/**
* Defines the configuration wrap password constant.
*
*/
public final static String WRAP_PASSWORD = "serviceBus.wrap.password";
/**
* Creates a service bus configuration using the specified namespace, name, and password.
*
* @param namespace
* A String
object that represents the namespace.
*
* @param authenticationName
* A String
object that represents the authentication name.
*
* @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.
*
*/
public static Configuration configureWithWrapAuthentication(String namespace, String authenticationName,
String authenticationPassword, String serviceBusRootUri, String wrapRootUri) {
return configureWithWrapAuthentication(null, Configuration.getInstance(), namespace, authenticationName,
authenticationPassword, serviceBusRootUri, wrapRootUri);
}
/**
* Creates a service bus configuration using the specified configuration, namespace, name, and password.
*
* @param configuration
* A previously instantiated Configuration
object.
*
* @param namespace
* A String
object that represents the namespace.
*
* @param authenticationName
* A String
object that represents the authentication name.
*
* @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.
*
*/
public static Configuration configureWithWrapAuthentication(Configuration configuration, String namespace,
String authenticationName, String authenticationPassword, String serviceBusRootUri, String wrapRootUri) {
return configureWithWrapAuthentication(null, configuration, namespace, authenticationName,
authenticationPassword, serviceBusRootUri, wrapRootUri);
}
/**
* Creates a service bus configuration using the specified profile, configuration, namespace, name, and password.
*
* @param profile
* A String
object that represents the profile.
*
* @param configuration
* A previously instantiated Configuration
object.
*
* @param namespace
* A String
object that represents the namespace.
*
* @param authenticationName
* A String
object that represents the authentication name.
*
* @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.
*
*/
public static Configuration configureWithWrapAuthentication(String profile, Configuration configuration,
String namespace, String authenticationName, String authenticationPassword, String serviceBusRootUri,
String wrapRootUri) {
if (profile == null) {
profile = "";
}
else if (profile.length() != 0 && !profile.endsWith(".")) {
profile = profile + ".";
}
configuration.setProperty(profile + CONNECTION_STRING, null);
configuration.setProperty(profile + URI, "https://" + namespace + serviceBusRootUri);
configuration.setProperty(profile + WRAP_URI, "https://" + namespace + wrapRootUri);
configuration.setProperty(profile + WRAP_NAME, authenticationName);
configuration.setProperty(profile + WRAP_PASSWORD, authenticationPassword);
return configuration;
}
/**
* Creates a service bus configuration using the specified connection string.
* @param profile
* A String
object that represents the profile.
* @param configuration
* A previously instantiated Configuration object.
* @param connectionString
* A String
object the contains the connection string for the
* service bus connection information.
* @return
* A Configuration
object that can be used when creating an instance of the
* ServiceBusService
class.
*/
public static Configuration configureWithConnectionString(String profile, Configuration configuration,
String connectionString) {
if (profile == null) {
profile = "";
}
else if (profile.length() != 0 && !profile.endsWith(".")) {
profile = profile + ".";
}
configuration.setProperty(profile + CONNECTION_STRING, connectionString);
return configuration;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy