Source code for pyjen.plugins.listview

"""Primitives that operate on Jenkins views of type 'List'"""
from pyjen.view import View


[docs]class ListView(View): """all Jenkins related 'view' information for views of type ListView Instances of this class are typically instantiated directly or indirectly through :py:meth:`pyjen.View.create` """ # --------------------------------------------------------------- PLUGIN API
[docs] @staticmethod def get_jenkins_plugin_name(): """Gets the name of the Jenkins plugin associated with this PyJen plugin This static method is used by the PyJen plugin API to associate this class with a specific Jenkins plugin, as it is encoded in the config.xml :rtype: :class:`str` """ return "hudson.model.ListView"
PluginClass = ListView if __name__ == "__main__": # pragma: no cover pass