001package systems.dmx.core.model; 002 003 004 005/** 006 * The role an association plays in an association. 007 * <p> 008 * A AssociationRoleModel object is a pair of an association ID and a role type URI. 009 * <p> 010 * Assertion: both, the association ID and the role type URI are set. 011 * <p> 012 * In the database a role type is represented by a topic of type "dmx.core.role_type". 013 */ 014public interface AssociationRoleModel extends RoleModel { 015}