Class AbstractMetadataContainer<T extends TimeBoundSAMLObject & SignableSAMLObject & CacheableSAMLObject>

    • Method Summary

      All Methods Instance Methods Abstract Methods Concrete Methods 
      Modifier and Type Method Description
      protected abstract void assignID​(T descriptor, String id)
      Assigns the supplied id to the ID attribute of the descriptor.
      T cloneDescriptor()
      Returns a deep clone of the descriptor element that is encapsulated by this object.
      T getDescriptor()
      Returns the metadata element that is encapsulated by this object.
      protected abstract String getID​(T descriptor)
      Returns the ID attribute of the supplied descriptor.
      int getIdSize()
      Returns the size of the ID attribute that is generated.
      protected abstract String getLogString​(T descriptor)
      Returns a log string of the supplied descriptor.
      float getUpdateFactor()
      Returns the factor (between 0 and 1) that is used to compute whether it is time to update the contained descriptor.
      Duration getValidity()
      Returns the duration of the validity that the encapsulated descriptor has.
      Element marshall()
      Marshals the encapsulated descriptor into its XML representation.
      void setIdSize​(int idSize)
      Assigns the size of the ID attribute that is generated.
      void setUpdateFactor​(float updateFactor)
      Assigns the factor (between 0 and 1) that is used to compute whether it is time to update the contained descriptor.
      void setValidity​(Duration validity)
      Assigns the duration of the validity that the encapsulated EntityDescriptor should have.
      T sign()
      Signs the encapsulated descriptor using the signature credentials configured for this object.
      T update​(boolean sign)
      Updates the encapsulated descriptor with a newly generated ID, a validity time according to this object's configuration, and then optionally signs the record.
      boolean updateRequired​(boolean signatureRequired)
      Predicate that returns true if the contained descriptor needs to be updated regarding its signature status and validity.
    • Field Detail

      • DEFAULT_VALIDITY

        public static final Duration DEFAULT_VALIDITY
        The default validity for metadata - one week.
      • DEFAULT_UPDATE_FACTOR

        public static final float DEFAULT_UPDATE_FACTOR
        The default update factor for the metadata - 0,75 (75%), i.e. "update the metadata when less than 75% of its original validity time remains".
        See Also:
        getUpdateFactor(), Constant Field Values
      • DEFAULT_DESCRIPTOR_ID_SIZE

        public static final int DEFAULT_DESCRIPTOR_ID_SIZE
        Default size for the ID attribute string.
        See Also:
        Constant Field Values
      • validity

        protected Duration validity
        The validity time for created entries.
      • updateFactor

        protected float updateFactor
        The update factor.
      • idSize

        protected int idSize
        The size of the ID attribute string.
      • signatureCredentials

        protected X509Credential signatureCredentials
        The signature credentials for signing the metadata entry.
    • Constructor Detail

      • AbstractMetadataContainer

        public AbstractMetadataContainer​(T descriptor,
                                         X509Credential signatureCredentials)
        Constructor assigning the encapsulated descriptor element.
        Parameters:
        descriptor - the descriptor object
        signatureCredentials - the signature credentials for signing the descriptor. May be null, but then no signing will be possible