nl.vpro.domain.media.update.UpdateSupplier Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of media-domain Show documentation
Show all versions of media-domain Show documentation
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.
package nl.vpro.domain.media.update;
import lombok.Getter;
import com.google.common.annotations.Beta;
import nl.vpro.metis.IdType;
/**
* An update supplier is an authoritative system - i.e. it is not a broadcaster - that supplies updates to POMS.
*
* This is a limited number of systems, for each of which the POMS backend may have specific configuration on how to exactly handle incoming updates.
*
* @since 7.7
*/
public enum UpdateSupplier {
/**
* See MSE-5484
*/
RCRS(IdType.RCRS),
/**
* I think we would like to do something similar for Sourcing Service
*/
@Beta
SOURCING_SERVICE(IdType.SRCS),
/**
* @since 7.10 (using web services earlier)
*/
PROMO(null);
@Getter
private final IdType idType;
UpdateSupplier(IdType idType) {
this.idType = idType;
}
}