DaBIn ID aus den Eigenschaften von GenericPerson entfernt.
git-svn-id: https://svn.libreccm.org/ccm/trunk@1661 8810af33-2d31-482b-a856-94f89814c4dfmaster
parent
e9a075f890
commit
061e0fca09
|
|
@ -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);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -54,8 +54,7 @@ public class GenericPerson extends ContentPage implements
|
||||||
public static final String CONTACTS = "contacts";
|
public static final String CONTACTS = "contacts";
|
||||||
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";
|
||||||
/**
|
/**
|
||||||
|
|
@ -166,15 +165,7 @@ public class GenericPerson extends ContentPage implements
|
||||||
public void unsetAlias() {
|
public void unsetAlias() {
|
||||||
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}.
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue