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

nl.vpro.domain.media.update.UpdateSupplier 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.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; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy