DaBIn ID aus den Eigenschaften von GenericPerson entfernt.

git-svn-id: https://svn.libreccm.org/ccm/trunk@1661 8810af33-2d31-482b-a856-94f89814c4df
master
jensp 2012-05-16 10:26:08 +00:00
parent e9a075f890
commit 061e0fca09
2 changed files with 2 additions and 13 deletions

View File

@ -34,8 +34,6 @@ object type GenericPerson extends ContentPage {
GenericPerson[0..1] alias = join cms_persons.alias_id GenericPerson[0..1] alias = join cms_persons.alias_id
to cms_persons.person_id; to cms_persons.person_id;
Integer[0..1] dabinId = cms_persons.dabin_id INTEGER;
reference key (cms_persons.person_id); reference key (cms_persons.person_id);
} }

View File

@ -55,7 +55,6 @@ public class GenericPerson extends ContentPage implements
public static final String CONTACTS_KEY = "linkKey"; public static final String CONTACTS_KEY = "linkKey";
public static final String CONTACTS_ORDER = "linkOrder"; public static final String CONTACTS_ORDER = "linkOrder";
public static final String ALIAS = "alias"; public static final String ALIAS = "alias";
public static final String DABIN_ID = "dabinId";
private static final String RELATION_ATTRIBUTES = private static final String RELATION_ATTRIBUTES =
"contacts.link_key:GenericContactType"; "contacts.link_key:GenericContactType";
/** /**
@ -167,14 +166,6 @@ public class GenericPerson extends ContentPage implements
set(ALIAS, null); set(ALIAS, null);
} }
public Integer getDabinId() {
return (Integer) get(DABIN_ID);
}
public void setDabinId(final Integer dabinId) {
set(DABIN_ID, dabinId);
}
/** /**
* A convenient method which combines {@code titlePre}, {@code givenName), * A convenient method which combines {@code titlePre}, {@code givenName),
* {@code surname} and {@code titlePost}. * {@code surname} and {@code titlePost}.