Interface ImpactAnalysisProcessorInterface

All Superinterfaces:
com.sas.services.information.publicobject.ProcessorInterface, Remote

public interface ImpactAnalysisProcessorInterface extends ProcessorInterface
This interface is used to describe the depencencies of public objects.
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final String
    Interface name.
    static final int
    Relationship type used for all objects that consume (or use) this object
    static final int
    What objects does this object consume services from?
    static final int
    Relationship type used for all objects that are consumed by (or used by) this object
    static final int
    What objects does this object provide services for?
  • Method Summary

    Modifier and Type
    Method
    Description
    List
    getRelatedObjects(int relationshipType)
    Returns a list of related objects for this object.

    Methods inherited from interface com.sas.services.information.publicobject.ProcessorInterface

    destroy, getPublicObject
  • Field Details

    • NAME

      static final String NAME
      Interface name.
      See Also:
    • TYPE_CONSUMES_DATA_FROM

      static final int TYPE_CONSUMES_DATA_FROM
      Relationship type used for all objects that consume (or use) this object
      See Also:
    • TYPE_PROVIDES_DATA_FOR

      static final int TYPE_PROVIDES_DATA_FOR
      Relationship type used for all objects that are consumed by (or used by) this object
      See Also:
    • TYPE_CONSUMES_SERVICES_FROM

      static final int TYPE_CONSUMES_SERVICES_FROM
      What objects does this object consume services from?
      See Also:
    • TYPE_PROVIDES_SERVICES_FOR

      static final int TYPE_PROVIDES_SERVICES_FOR
      What objects does this object provide services for?
      See Also:
  • Method Details