Class AndJobRestriction
java.lang.Object
com.synopsys.arc.jenkinsci.plugins.jobrestrictions.restrictions.JobRestriction
com.synopsys.arc.jenkinsci.plugins.jobrestrictions.restrictions.logic.AndJobRestriction
- All Implemented Interfaces:
ExtensionPoint
,Describable<JobRestriction>
,Serializable
Virtual job restriction, which allows to check two restrictions at once.
- Author:
- Oleg Nenashev
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from interface hudson.ExtensionPoint
ExtensionPoint.LegacyInstancesAreScopedToHudson
-
Field Summary
Fields inherited from class com.synopsys.arc.jenkinsci.plugins.jobrestrictions.restrictions.JobRestriction
DEFAULT
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionboolean
canTake
(Queue.BuildableItem item) Check if theQueue
item can be taken.boolean
getFirst()
Methods inherited from class com.synopsys.arc.jenkinsci.plugins.jobrestrictions.restrictions.JobRestriction
all, allDescriptors, getDescriptor
-
Constructor Details
-
AndJobRestriction
-
-
Method Details
-
getFirst
-
getSecond
-
canTake
Description copied from class:JobRestriction
Check if theQueue
item can be taken. This method is being used to check if theNode
can take the specified job. If the job cannot be taken, Jenkins will try to launch the job on other nodes.- Specified by:
canTake
in classJobRestriction
- Parameters:
item
- An item to be checked- Returns:
- true if the node can take the item
-
canTake
Description copied from class:JobRestriction
Check if theJob
can be executed according to the specifiedRun
. If the job cannot be executed, it will be aborted by the plugin.- Specified by:
canTake
in classJobRestriction
- Parameters:
run
- ARun
to be checked- Returns:
- true if the build can be executed
-