Package wt.services
Class StandardManager
java.lang.Object
wt.services.StandardManager
- All Implemented Interfaces:
Serializable,wt.fc._NetFactor,NetFactor,wt.services.Manager
- Direct Known Subclasses:
com.ptc.windchill.rd.service.AbstractReceivedDeliveryServiceImpl,DefaultServiceDataUpdateRequiredService,EPMStandardFamilyTableManager,EPMStandardUploadManager,EPMStandardWorkspaceManager,com.ptc.projectmanagement.plan.EPPAttributeHandlerFactory,StandardAccessControlManager,StandardAdministrativeDomainManager,StandardAgreementService,StandardArbortextDownloadsService,StandardAssignmentService,StandardAssociationConstraintService,StandardAuditCreatorService,StandardAXLService,StandardBaselineService,StandardBomService,StandardBuildService,StandardConfigService,StandardConfigurableLinkService,StandardConfigurationService,StandardConflictResolutionService,StandardContainerMoveService,StandardContainerTeamService,StandardContainerTemplateService,StandardContentControlService,StandardCustomerExperienceService,StandardDeleteManager,StandardDeliverableService,StandardDeliveryService,StandardEPPCustomEventHandlerService,StandardESIService,StandardExpressionService,StandardFBMLPlannableAttributesEventHandlerService,StandardFederationService,StandardFolderService,StandardForumService,StandardFvService,StandardIdentityService,StandardInterSvrComService,StandardIteratedNavigationCriteriaService,StandardIXBService,StandardIxStagingDBTagSvrService,StandardLicenseUsageService,StandardLifeCycleLWService,StandardLifeCycleService,StandardLineNumberService,StandardLockService,StandardManagerService,StandardMasterService,StandardModelItemManager,StandardModuleVariantInformationService,StandardMPMDocumentService,StandardMpmLinkService,StandardMPMPartAllocationService,StandardMPMProcessPlanService,StandardMPMRepresentableService,StandardMPMResourceService,StandardNavigationCriteriaService,StandardNavigationFilterService,StandardNCService,StandardNmActionService,StandardNmFolderService,StandardNmProjMgmtService,StandardNmRoleService,StandardNmTopicService,StandardNodeResolutionService,StandardNotificationManager,StandardNPIService,StandardObjComparisonService,StandardOccurrenceService,StandardOptionsClientService,StandardOrganizationServicesManager,StandardPartDocService,StandardPartPathService,StandardPersistedCollectionService,StandardPersistenceManager,StandardPlannableService,StandardPlanService,StandardPreferenceService,StandardProjAdminService,StandardProjExecService,StandardQueueService,StandardRecentlyVisitedService,StandardReportService,StandardSessionManager,StandardShippingService,StandardStructService,StandardSubStringIndexService,StandardSupplierPartService,StandardTrainingTrackingService,StandardTypedUtilityService,StandardVersionControlService,StandardViewService,StandardWfEngineService,StandardWorkflowService,StandardWorkInfoService,StandardWorkInProgressService,StandardWPSyncService,StandardWTPartAlternateRepService,StandardWTPartBuildService,StandardWTPartService
StandardManager is the base class for NetFactor sevices and managers..
Use the newStandardManager static factory method(s), not
the StandardManager constructor, to construct instances
of this class. Instances must be constructed using the static factory(s),
in order to ensure proper initialization of the instance.
Supported API: true
Extendable: true
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionGets the value of the attribute: managerService; Service which manages this manager
Supported API: trueintGets the value of the attribute: managerStatus; Manager status set to Manager.STATUS_SHUTDOWN, Manager.STATUS_STARTED, ...
Supported API: truegetName()Gets the value of the attribute: name; Manager name
Supported API: trueGets the value of the attribute: startupType; Manager startup type.protected void
Supported API: trueprotected voidDummy method to be overridden by subclasses.protected voidDummy method to be overridden by subclasses.voidregisterEvents(ManagerService managerService) Register events with the passed ManagerService.
-
Method Details
-
getName
Gets the value of the attribute: name; Manager name
Supported API: true- Specified by:
getNamein interfacewt.services.Manager- Returns:
- String
-
getStartupType
Gets the value of the attribute: startupType; Manager startup type.Must be either Manager.STARTUP_AUTOMATIC or manager.STARTUP_MANUAL
Supported API: true- Specified by:
getStartupTypein interfacewt.services.Manager- Returns:
- String
- See Also:
-
wt.services.Manager.STARTUP_AUTOMATIC
-
getManagerStatus
public int getManagerStatus()Gets the value of the attribute: managerStatus; Manager status set to Manager.STATUS_SHUTDOWN, Manager.STATUS_STARTED, ...
Supported API: true- Specified by:
getManagerStatusin interfacewt.services.Manager- Returns:
- int
- See Also:
-
Manager.STATUS_SHUTDOWN
-
getManagerService
Gets the value of the attribute: managerService; Service which manages this manager
Supported API: true- Specified by:
getManagerServicein interfacewt.services.Manager- Returns:
- ManagerService
-
initialize
Supported API: true- Throws:
WTException
-
performStartupProcess
Dummy method to be overridden by subclasses. Subclasses should override this method and provide startup processing.
Supported API: true- Throws:
ManagerException
-
performShutdownProcess
Dummy method to be overridden by subclasses. Subclasses should override this method and provide shutdown processing.
Supported API: true- Throws:
ManagerException
-
registerEvents
Register events with the passed ManagerService. The default method does nothing, subclasses should provide an overriding implementation.
Supported API: true- Specified by:
registerEventsin interfacewt.services.Manager- Parameters:
managerService- the ManagerService with which to register events.
-