libsolace.Naming module

This method is responsible for handing off Naming work to the configured naming standard. The Plugin for the standard is specified in the NAMEHOOK property of the libsolace.yaml file.

example while ZoinksNamingStandard set as NAMEHOOK in libsolace.yaml: `python >>> from libsolace.plugins.NamingStandard import name >>> name("%s_something", "dev") 'dev_something' `

example while DefaultNaming set as NAMEHOOK `python >>> name("something", "dev") 'dev_something' `

libsolace.Naming.name(*args, **kwargs)[source]

Passes off work to the plugin as specified by NAMEHOOK in libsolace.yaml. The plugin MUST have a solve() method which accepts args and kwargs. see NamingStandard.py and ZoinksNamingStandard.py

Return type:str