/******************************************************************************* * * Copyright (c) 2004-2009 Oracle Corporation. * * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * * Kohsuke Kawaguchi * * *******************************************************************************/ package hudson.model; import hudson.ExtensionPoint; import hudson.ExtensionListView; import hudson.Extension; import hudson.ExtensionList; import java.util.List; /** * Extension point to add icon to <tt>http://server/hudson/manage</tt> page. * * <p> 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 {@link Hudson#getActions()}.) * * <p> To register a new instance, put {@link Extension} on your implementation * class. * * @author Kohsuke Kawaguchi * @since 1.194 */ public abstract class ManagementLink implements ExtensionPoint, Action { /** * Mostly works like {@link 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. * * @return As a special case, return null to exclude this object from the * management link. This is useful for defining {@link ManagementLink} that * only shows up under certain circumstances. */ public abstract String getIconFileName(); /** * Returns a short description of what this link does. This text is the one * that's displayed in grey. This can include HTML, although the use of * block tags is highly discouraged. * * Optional. */ public String getDescription() { return ""; } /** * {@inheritDoc} * * <p> In case of {@link ManagementLink}, this value is put straight into * the href attribute, so relative paths are interpreted against the root * {@link Hudson} object. */ public abstract String getUrlName(); /** * All registered instances. * * @deprecated as of 1.286 Use {@link #all()} for read access and put * {@link Extension} for registration. */ public static final List<ManagementLink> LIST = ExtensionListView.createList(ManagementLink.class); /** * All regsitered instances. */ public static ExtensionList<ManagementLink> all() { return Hudson.getInstance().getExtensionList(ManagementLink.class); } }