From c8b9be8e6afb2efafa53fc98100b6413f4c4f315 Mon Sep 17 00:00:00 2001 From: quasi Date: Mon, 8 Nov 2010 12:00:19 +0000 Subject: [PATCH] GenericContact MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fehlende Datei hinzugefügt git-svn-id: https://svn.libreccm.org/ccm/trunk@599 8810af33-2d31-482b-a856-94f89814c4df --- .../contenttypes/GenericContactEntryKeys.java | 34 +++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 ccm-cms/src/com/arsdigita/cms/contenttypes/GenericContactEntryKeys.java diff --git a/ccm-cms/src/com/arsdigita/cms/contenttypes/GenericContactEntryKeys.java b/ccm-cms/src/com/arsdigita/cms/contenttypes/GenericContactEntryKeys.java new file mode 100644 index 000000000..ffe321b8f --- /dev/null +++ b/ccm-cms/src/com/arsdigita/cms/contenttypes/GenericContactEntryKeys.java @@ -0,0 +1,34 @@ +/* + * To change this template, choose Tools | Templates + * and open the template in the editor. + */ + +package com.arsdigita.cms.contenttypes; + +import com.arsdigita.cms.RelationAttributeCollection; +import com.arsdigita.persistence.DataCollection; + +/** + * + * @author Sören Bernstein (quasimodo) + */ +public class GenericContactEntryKeys extends RelationAttributeCollection { + + public static final String ATTRIBUTE_NAME = "GenericContactEntryKeys"; + + /** + * Creates a new instance of GenericContactEntryCollection + */ + public GenericContactEntryKeys() { + super(ATTRIBUTE_NAME); + } + + public GenericContactEntryKeys(String key) { + super(ATTRIBUTE_NAME, key); + } + + public GenericContactEntryKeys(DataCollection dataCollection) { + super(dataCollection); + } + +}