All Downloads are FREE. Search and download functionalities are using the official Maven repository.

hudson.model.InvisibleAction Maven / Gradle / Ivy

The newest version!
/*******************************************************************************
 *
 * 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;

/**
 * Partial {@link Action} implementation that doesn't have any UI presence.
 *
 * 

This class can be used as a convenient base class, when you use * {@link Action} for just storing data associated with a build. * * @author Kohsuke Kawaguchi * @since 1.188 */ public abstract class InvisibleAction implements Action { public final String getIconFileName() { return null; } public final String getDisplayName() { return null; } public final String getUrlName() { return null; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy