Class ActivationDTO


  • public class ActivationDTO
    extends org.osgi.dto.DTO
    A snapshot of the runtime state of a component activation.
    Author:
    $Id: a9641882909aeb6cc235ad4efb26450388775993 $
    • Field Summary

      Fields 
      Modifier and Type Field Description
      java.util.List<java.lang.String> errors
      The list of errors which occurred during initialization.
      org.osgi.framework.dto.ServiceReferenceDTO service
      The service this activation may have registered.
      ActivationTemplateDTO template
      The template describing this activation.
    • Constructor Summary

      Constructors 
      Constructor Description
      ActivationDTO()  
    • Method Summary

      • Methods inherited from class org.osgi.dto.DTO

        toString
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Field Detail

      • template

        public ActivationTemplateDTO template
        The template describing this activation.

        Must not be null

      • service

        public org.osgi.framework.dto.ServiceReferenceDTO service
        The service this activation may have registered.

        Must not be null if template.serviceClasses is not empty.

      • errors

        public java.util.List<java.lang.String> errors
        The list of errors which occurred during initialization. An empty list means there were no errors.

        Must not be null.

    • Constructor Detail

      • ActivationDTO

        public ActivationDTO()