cfme.middleware.messaging module

class cfme.middleware.messaging.All(obj, navigate_obj)[source]

Bases: cfme.utils.appliance.implementations.ui.CFMENavigateStep

VIEW

alias of ProviderMessagingAllView

prerequisite

This is a helper descriptor for destinations which are linked to an attribute of the object.

For instance, imagine you have an object that has an attribute(parent) which has a ‘ViewAll’, destination that needs to be visited before you can click on ‘New’. In this instance, you would need to make the ‘New’ destination use ‘ViewAll’ as a prerequisite. As this would need no other special input, we can use NavigateToAttribute as a helper, supplying only the name of the attribute which stores the object to be used in the navigation, and the destination name. This will set prerequisite to be a callable that will navigate to the prerequisite step.

resetter()[source]
step()[source]
class cfme.middleware.messaging.Details(obj, navigate_obj)[source]

Bases: cfme.utils.appliance.implementations.ui.CFMENavigateStep

VIEW

alias of MessagingDetailsView

prerequisite

This is a helper descriptor for navigation destinations which are linked to the same class.

For instance, imagine you have an object that has a ‘ViewAll’, destination that needs to be visited before you can click on ‘New’. In this instance, you would need to make the ‘New’ destination use ‘ViewAll’ as a prerequisite. As this would need no other special input, we can use NavigateToSibling as a helper. This will set prerequisite to be a callable that will navigate to the prerequisite step.

step()[source]
class cfme.middleware.messaging.MiddlewareMessaging(name, server, provider=None, appliance=None, **kwargs)[source]

Bases: cfme.middleware.provider.MiddlewareBase, cfme.utils.appliance.Navigatable, cfme.common.Taggable, cfme.common.UtilizationMixin

MiddlewareMessaging class provides details on messaging page. Class methods available to get existing messagings list

Parameters:
  • name – Name of the messaging
  • provider – Provider object (HawkularProvider)
  • nativeid – Native id (internal id) of messaging
  • server – Server object of the messaging (MiddlewareServer)
  • properties – Messaging providers
  • db_id – database row id of messaging

Usage:

mymessaging = MiddlewareMessaging(name='JMS Queue [hawkular/metrics/counters/new]',
                        server=ser_instance,
                        provider=haw_provider,
                        properties='ds-properties')

messagings = MiddlewareMessaging.messagings() [or]
messagings = MiddlewareMessaging.messagings(provider=haw_provider) [or]
messagings = MiddlewareMessaging.messagings(provider=haw_provider,server=ser_instance)
classmethod download(extension, provider=None, server=None)[source]
classmethod headers()[source]
load_details(refresh=False)[source]
messaging(*args, **kwargs)
messaging_in_db = None
messaging_in_mgmt = None
messaging_in_rest = None
classmethod messagings(provider=None, server=None)[source]
classmethod messagings_in_db(server=None, provider=None, strict=True)[source]
classmethod messagings_in_mgmt(provider=None, server=None)[source]
property_tuples = [('name', 'Name'), ('nativeid', 'Nativeid'), ('messaging_type', 'Messaging type')]
taggable_type = 'MiddlewareMessaging'