Package | Description |
---|---|
hudson.cli.handlers |
OptionHandler implementations for Hudson. |
hudson.model |
Core object model that are bound to URLs via stapler, rooted at Hudson.
|
hudson.security |
Security-related code.
|
hudson.util |
Other miscellaneous utility code
|
hudson.views | |
jenkins.model |
Modifier and Type | Method and Description |
---|---|
View |
ViewOptionHandler.getView(String name)
Gets a view by its name
Note: Personal user's views aren't supported now.
|
Constructor and Description |
---|
ViewOptionHandler(org.kohsuke.args4j.CmdLineParser parser,
org.kohsuke.args4j.OptionDef option,
org.kohsuke.args4j.spi.Setter<View> setter) |
Modifier and Type | Class and Description |
---|---|
class |
AllView
View that contains everything. |
class |
ListView
Displays
Job s in a flat list view. |
class |
MyView
View that only contains projects for which the current user has access to. |
class |
ProxyView
A view that delegates to another.
|
class |
TreeView
EXPERIMENTAL
|
Modifier and Type | Field and Description |
---|---|
protected View |
ViewProperty.view
The view object that owns this property.
|
Modifier and Type | Field and Description |
---|---|
static DescriptorList<View> |
View.LIST
|
static AlternativeUiTextProvider.Message<View> |
View.NEW_PRONOUN
"Job" in "New Job".
|
static Comparator<View> |
View.SORTER |
Modifier and Type | Method and Description |
---|---|
static View |
View.create(org.kohsuke.stapler.StaplerRequest req,
org.kohsuke.stapler.StaplerResponse rsp,
ViewGroup owner) |
static View |
View.createViewFromXML(String name,
InputStream xml)
Instantiate View subtype from XML stream.
|
View |
View.PropertyList.getOwner() |
View |
View.getOwnerPrimaryView() |
View |
ViewGroupMixIn.getPrimaryView()
Returns the primary
View that renders the top-page of Hudson. |
View |
ViewGroup.getPrimaryView()
If the view group renders one view in its own URL (like Jenkins top page does),
then that view is called the primary view.
|
View |
TreeView.getPrimaryView() |
View |
MyViewsProperty.getPrimaryView() |
View |
ProxyView.getProxiedView() |
View |
ViewGroupMixIn.getView(String name) |
View |
ViewGroup.getView(String name)
Gets a view of the given name.
|
View |
TreeView.getView(String name) |
View |
MyViewsProperty.getView(String name) |
Modifier and Type | Method and Description |
---|---|
static DescriptorExtensionList<View,ViewDescriptor> |
View.all()
Returns all the registered
ViewDescriptor s. |
Collection<View> |
ViewGroupMixIn.getViews()
Gets the read-only list of all
View s. |
Collection<View> |
ViewGroup.getViews()
Gets all the views in this group.
|
Collection<View> |
TreeView.getViews() |
Collection<View> |
MyViewsProperty.getViews() |
protected abstract List<View> |
ViewGroupMixIn.views()
Returns all the views.
|
Modifier and Type | Method and Description |
---|---|
void |
ModifiableViewGroup.addView(View view)
|
void |
ViewGroupMixIn.addView(View v) |
void |
MyViewsProperty.addView(View view) |
boolean |
ViewGroupMixIn.canDelete(View view) |
boolean |
ViewGroup.canDelete(View view)
Determine whether a view may be deleted.
|
boolean |
TreeView.canDelete(View view) |
boolean |
MyViewsProperty.canDelete(View view) |
static List<Action> |
TransientViewActionFactory.createAllFor(View v)
Creates
Action s for a view, using all registered TransientViewActionFactory s. |
abstract List<Action> |
TransientViewActionFactory.createFor(View v)
returns a list of (transient) actions never null, may be empty
|
void |
ViewGroupMixIn.deleteView(View view) |
void |
ViewGroup.deleteView(View view)
Deletes a view in this group.
|
void |
TreeView.deleteView(View view) |
void |
MyViewsProperty.deleteView(View view) |
boolean |
ViewPropertyDescriptor.isEnabledFor(View view)
Whether or not the described property is enabled in the current context.
|
ViewProperty |
ViewPropertyDescriptor.newInstance(View view)
Creates a default instance of
ViewProperty to be associated
with View object that wasn't created from a persisted XML data. |
void |
ViewGroupMixIn.onViewRenamed(View view,
String oldName,
String newName) |
void |
ViewGroup.onViewRenamed(View view,
String oldName,
String newName)
View calls this method when it's renamed. |
void |
TreeView.onViewRenamed(View view,
String oldName,
String newName) |
void |
MyViewsProperty.onViewRenamed(View view,
String oldName,
String newName) |
protected void |
AbstractCIBase.setViewOwner(View v) |
Constructor and Description |
---|
AsynchPeople(View parent) |
People(View parent) |
Constructor and Description |
---|
ViewDescriptor(Class<? extends View> clazz) |
Modifier and Type | Method and Description |
---|---|
ACL |
AuthorizationStrategy.getACL(View item)
Implementation can choose to provide different ACL for different views.
|
Constructor and Description |
---|
RunList(View view) |
Modifier and Type | Method and Description |
---|---|
abstract List<TopLevelItem> |
ViewJobFilter.filter(List<TopLevelItem> added,
List<TopLevelItem> all,
View filteringView)
Choose which jobs to show for a view.
|
Modifier and Type | Method and Description |
---|---|
View |
Jenkins.getPrimaryView()
Returns the primary
View that renders the top-page of Jenkins. |
View |
Jenkins.getStaplerFallback()
Fallback to the primary view.
|
View |
Jenkins.getView(String name) |
Modifier and Type | Method and Description |
---|---|
Collection<View> |
Jenkins.getViews()
Gets the read-only list of all
View s. |
Modifier and Type | Method and Description |
---|---|
void |
Jenkins.addView(View v) |
boolean |
Jenkins.canDelete(View view) |
void |
Jenkins.deleteView(View view) |
void |
Jenkins.onViewRenamed(View view,
String oldName,
String newName) |
void |
Jenkins.setPrimaryView(View v) |
Copyright © 2019. All rights reserved.