Uses of Interface
com.redwood.scheduler.api.model.ExtensionPoint
-
Packages that use ExtensionPoint Package Description com.redwood.scheduler.api.model Scheduler API - Modelcom.redwood.scheduler.api.model.compatibility_14 com.redwood.scheduler.api.scripting.variables Scheduler API - Interfaces for scripting variables. -
-
Uses of ExtensionPoint in com.redwood.scheduler.api.model
Fields in com.redwood.scheduler.api.model with type parameters of type ExtensionPoint Modifier and Type Field Description static QueryObjectType<ExtensionPoint>
ExtensionPoint. TYPE
Type that can be used inSchedulerSession.executeObjectQuery(QueryObjectType, String, Object...)
.Methods in com.redwood.scheduler.api.model that return ExtensionPoint Modifier and Type Method Description ExtensionPoint
SchedulerSession. createExtensionPoint()
Return a new instance of ExtensionPoint.static ExtensionPoint
BusinessKeyLookup. getExtensionPointByBusinessKey(SchedulerSession session, String key)
Query an instance ofExtensionPoint
, based on its business key.ExtensionPoint
BusinessKeyResolver. getExtensionPointByKey(BusinessKey key)
Query an instance ofExtensionPoint
, based on its business key.ExtensionPoint
Partition. getExtensionPointByName(String name)
Get the ExtensionPoint by Name.ExtensionPoint
SchedulerSession. getExtensionPointByName(Partition partition, String name)
Get theExtensionPoint
by Name.ExtensionPoint
SchedulerSession. getExtensionPointByName(String name)
Get theExtensionPoint
by Name.ExtensionPoint
SchedulerSession. getExtensionPointByUniqueId(Long uniqueId)
Get theExtensionPoint
by UniqueId.Methods in com.redwood.scheduler.api.model that return types with arguments of type ExtensionPoint Modifier and Type Method Description RWIterable<ExtensionPoint>
Application. getChildExtensionPoints()
Get anRWIterable
over a collection ofChildExtensionPoints
, the collection will be ordered by Name.RWIterable<ExtensionPoint>
Library. getExtensionPoints()
Get anRWIterable
over an ordered collection ofExtensionPoints
.RWIterable<ExtensionPoint>
Partition. getExtensionPoints()
Get anRWIterable
over an ordered collection ofExtensionPoints
.Methods in com.redwood.scheduler.api.model with parameters of type ExtensionPoint Modifier and Type Method Description void
AbstractConcreteObjectCallback. handle(ExtensionPoint theExtensionPoint)
void
ConcreteObjectCallback. handle(ExtensionPoint theExtensionPoint)
-
Uses of ExtensionPoint in com.redwood.scheduler.api.model.compatibility_14
Methods in com.redwood.scheduler.api.model.compatibility_14 that return types with arguments of type ExtensionPoint Modifier and Type Method Description Iterator<ExtensionPoint>
ApplicationComp. getChildExtensionPoints()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useApplication.getChildExtensionPoints()
instead.Iterator<ExtensionPoint>
LibraryComp. getExtensionPoints()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useLibrary.getExtensionPoints()
instead.Iterator<ExtensionPoint>
PartitionComp. getExtensionPoints()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, usePartition.getExtensionPoints()
instead. -
Uses of ExtensionPoint in com.redwood.scheduler.api.scripting.variables
Methods in com.redwood.scheduler.api.scripting.variables that return ExtensionPoint Modifier and Type Method Description ExtensionPoint
ExtensionPointScriptObject. getExtensionPoint()
Get the extension point that defined this action.
-