|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objecthudson.model.ManagementLink
public abstract class ManagementLink
Extension point to add icon to http://server/hudson/manage page.
This is a place for exposing features that are only meant for system
admins (whereas features that are meant for Hudson users at large should
probably be added to Hudson.getActions().)
To register a new instance, put Extension on your implementation
class.
| Nested Class Summary |
|---|
| Nested classes/interfaces inherited from interface hudson.ExtensionPoint |
|---|
ExtensionPoint.LegacyInstancesAreScopedToHudson |
| Field Summary | |
|---|---|
static List<ManagementLink> |
LIST
Deprecated. as of 1.286 Use all() for read access and put
Extension for registration. |
| Constructor Summary | |
|---|---|
ManagementLink()
|
|
| Method Summary | |
|---|---|
static ExtensionList<ManagementLink> |
all()
All regsitered instances. |
String |
getDescription()
Returns a short description of what this link does. |
abstract String |
getIconFileName()
Mostly works like Action.getIconFileName(), except that the
expected icon size is 48x48, not 24x24. |
abstract String |
getUrlName()
Gets the URL path name. |
| Methods inherited from class java.lang.Object |
|---|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Methods inherited from interface hudson.model.Action |
|---|
getDisplayName |
| Field Detail |
|---|
public static final List<ManagementLink> LIST
all() for read access and put
Extension for registration.
| Constructor Detail |
|---|
public ManagementLink()
| Method Detail |
|---|
public abstract String getIconFileName()
Action.getIconFileName(), except that the
expected icon size is 48x48, not 24x24. So if you give just a file name,
"/images/48x48" will be assumed.
getIconFileName in interface ActionManagementLink that
only shows up under certain circumstances.Hudson.isAdmin()public String getDescription()
public abstract String getUrlName()
For example, if this method returns "xyz", and if the parent object (that this action is associated with) is bound to /foo/bar/zot, then this action object will be exposed to /foo/bar/zot/xyz.
This method should return a string that's unique among other
Actions.
The returned string can be an absolute URL, like "http://www.sun.com/", which is useful for directly connecting to external systems.
If the returned string starts with '/', like '/foo', then it's assumed to be relative to the context path of the Hudson webapp.
In case of ManagementLink, this value is put straight into
the href attribute, so relative paths are interpreted against the root
Hudson object.
getUrlName in interface ActionAction.getIconFileName().public static ExtensionList<ManagementLink> all()
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||