nl.vpro.domain.user.ThirdParty Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of user-domain Show documentation
Show all versions of user-domain Show documentation
Domain classes and interfaces related to accountability, users and organizations.
/*
* Copyright (C) 2012 Licensed under the Apache License, Version 2.0
* VPRO The Netherlands
*/
package nl.vpro.domain.user;
import java.io.Serial;
import jakarta.persistence.Cacheable;
import jakarta.persistence.Entity;
import jakarta.xml.bind.annotation.XmlType;
import nl.vpro.domain.Xmlns;
/**
* Third parties are organisation that are not {@link Broadcaster}s, or {@link Portal}s
*
* @TODO There are _no_ third parties defined in production
*/
@Entity
@Cacheable(true)
@XmlType(name = "thirdPartyType", namespace = Xmlns.MEDIA_NAMESPACE)
public class ThirdParty extends Organization {
@Serial
private static final long serialVersionUID = 3250763235873656107L;
protected ThirdParty() {
}
public ThirdParty(String id, String displayName) {
super(id, displayName);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy