All Downloads are FREE. Search and download functionalities are using the official Maven repository.

nl.vpro.domain.media.ParentChildRelation Maven / Gradle / Ivy

Go to download

The basic domain classes for 'media', the core of POMS. Also, the 'update' XML bindings for it. It also contains some closely related domain classes like the enum to contain NICAM kijkwijzer settings.

There is a newer version: 8.3.1
Show newest version
package nl.vpro.domain.media;

/**
 * Represents a parent/child relation between two {@link MidIdentifiable}s. In practice between two {@link MediaObject}s.
 * 

* Poms recognizes three types of such relations: * *

    *
  1. 'member of' {@link MediaObject#getMemberOf()}
  2. *
  3. 'episode of' {@link Program#getEpisodeOf()}
  4. *
  5. 'segment of' {@link Segment#getSegmentOf()}
  6. *
* * @author Michiel Meeuwissen * @since 5.13.1 */ public interface ParentChildRelation { default String getParentMid() { return getMidRef(); } String getMidRef(); String getChildMid(); /** * The type of the parent */ MediaType getType(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy