com.morpheusdata.infoblox.InfobloxPlugin.groovy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of morpheus-infoblox-plugin Show documentation
Show all versions of morpheus-infoblox-plugin Show documentation
Morpheus Core provides the core framework for implementing extension plugins for the morpheus platform
The newest version!
package com.morpheusdata.infoblox
import com.morpheusdata.core.Plugin
class InfobloxPlugin extends Plugin {
@Override
void initialize() {
InfobloxProvider infobloxProvider = new InfobloxProvider(this, morpheus)
this.pluginProviders.put("infoblox2", infobloxProvider)
this.setName("Infoblox2")
}
/**
* Called when a plugin is being removed from the plugin manager (aka Uninstalled)
*/
@Override
void onDestroy() {
//nothing to do for now
}
}
//AccountIntegrationType
// -> has many - optiontype // for UI
© 2015 - 2024 Weber Informatics LLC | Privacy Policy