%ZHSLIB.PackageManager.Developer.Lifecycle.Abstract
abstract class %ZHSLIB.PackageManager.Developer.Lifecycle.Abstract extends %Library.RegisteredObject
@API.ExtensibleProperty Inventory (Including Private)
Method Inventory (Including Private)
- %DispatchMethod()
- %OnNew()
- GetCompletePhases()
- GetDefaultParameters()
- GetDefaultResourceProcessor()
- GetDefaultResourceProcessorProc()
- OnAfterPhase()
- OnBeforePhase()
Parameters
parameter PHASES;
$ListBuild list of phases in this lifecycle.
For each phase name, an instance method named "%" must be defined in the class with a return type of %Status.
For each phase name, an instance method named "%
Properties (Including Private)
property Module as %ZHSLIB.PackageManager.Developer.Module [ Private ];
Property methods: ModuleGet(), ModuleGetObject(), ModuleGetObjectId(), ModuleGetSwizzled(), ModuleIsValid(), ModuleNewObject(), ModuleSet(), ModuleSetObject(), ModuleSetObjectId(), ModuleUnSwizzle()
property PhaseList as %List;
Property methods: PhaseListGet(), PhaseListIsValid(), PhaseListLogicalToOdbc(), PhaseListOdbcToLogical(), PhaseListSet()
Methods (Including Private)
method %DispatchMethod(pMethod As %String, ByRef pParams, Args...) [ Language = objectscript ]
Inherited description: Is used to implement an unknown method call. It is also used
to resolve an unknown multidimensional property reference (to get the value
of a property) because that syntax is identical to a method call.
private method %OnNew(pModule As %ZHSLIB.PackageManager.Developer.Module) as %Status [ Language = objectscript ]
Inherited description: This callback method is invoked by the %New() method to
provide notification that a new instance of an object is being created.
If this method returns an error then the object will not be created.
It is passed the arguments provided in the %New call. When customizing this method, override the arguments with whatever variables and types you expect to receive from %New(). For example, if you're going to call %New, passing 2 arguments, %OnNew's signature could be:
Method %OnNew(dob as %Date = "", name as %Name = "") as %Status If instead of returning a %Status code this returns an oref and this oref is a subclass of the current class then this oref will be the one returned to the caller of %New method.
This method defines what a complete phase means for a given list of phases
classmethod GetDefaultParameters(ByRef pParams, pPhases As %List) [ Language = objectscript ]
Merges default parameters into pParams
For now, just looks at ^SYS("PackageManager","DefaultParameters")
classmethod GetDefaultResourceProcessor(pResourceName As %String) as %Dictionary.Classname [ Language = objectscript ]
Returns the default resource processor class to use for a given resource name.
classmethod GetDefaultResourceProcessorProc(pLifecycleClass As %Dictionary.Classname, pResourceName As %String) as %String [ Language = objectscript, SQLProc = GET_DEFAULT_RESOURCE_PROCESSOR ]
Inherited Members
Inherited Methods (Including Private)
- %AddToSaveSet()
- %ClassIsLatestVersion()
- %ClassName()
- %ConstructClone()
- %ConstructCloneInit()
- %DispatchClassMethod()
- %DispatchGetModified()
- %DispatchGetProperty()
- %DispatchSetModified()
- %DispatchSetMultidimProperty()
- %DispatchSetProperty()
- %Extends()
- %GetParameter()
- %IsA()
- %IsModified()
- %New()
- %NormalizeObject()
- %ObjectModified()
- %OnAddToSaveSet()
- %OnClose()
- %OnConstructClone()
- %OnValidateObject()
- %OriginalNamespace()
- %PackageName()
- %RemoveFromSaveSet()
- %SerializeObject()
- %SetModified()
- %ValidateObject()