Associates the names of installed UIEs with times when they should be
automatically loaded by LSR under a particular user profile. Supported
times for automatically loading UIEs include when LSR starts, when any
new Tier is created, or when
a Tier with a particular
process name is created.
|
|
|
|
|
addToStartup(self,
kind,
name,
index)
Adds the name of a UIE of the given kind to the on_startup dictionary so that it is loaded
automatically when LSR starts. |
source code
|
|
|
|
|
|
|
addToTier(self,
kind,
name,
tier_name,
index)
Adds the name of a UIE of the given kind to the on_tier
dictionary so that it is loaded automatically when a Tier with the given name is
created. |
source code
|
|
|
|
removeFromTier(self,
kind,
name,
tier_name)
Removes the name of a UIE of the given kind from the on_tier
dictionary so that it is no longer loaded automatically on when a Tier with the given name is
created. |
source code
|
|
|
|
|
|
|
|
|
|
|
|
list of string
|
listStartup(self,
kind)
Gets a list of all UIE names of the given kind that are to be loaded
at LSR startup. |
source code
|
|
|
dictionary of string : list
|
listTierMap(self,
kind)
Gets a list of all UIE names of the given kind paired with the names
of the Tiers on which
they will load. |
source code
|
|
|
list of string
|
listTier(self,
kind,
tier=None)
Gets a list of all UIE names of the given kind that are to be loaded
when a Tier with the
given name is created. |
source code
|
|
|
list of string
|
listAnyTier(self,
kind)
Gets a list of all UIE names of the given kind that are to be loaded
when any Tier is created. |
source code
|
|
|
Inherited from object:
__delattr__,
__getattribute__,
__hash__,
__new__,
__reduce__,
__reduce_ex__,
__repr__,
__setattr__,
__str__
|