forked from D-Net/dnet-hadoop
[openorgs] mapping parent/child relations without massaging the semantic labels
This commit is contained in:
parent
378020e30a
commit
77bc9863e9
|
@ -741,10 +741,7 @@ public class MigrateDbEntitiesApplication extends AbstractMigrationApplication i
|
|||
final Relation r = new Relation();
|
||||
r.setRelType(ORG_ORG_RELTYPE);
|
||||
r.setSubRelType(ModelConstants.RELATIONSHIP);
|
||||
r
|
||||
.setRelClass(
|
||||
rs.getString("type").equalsIgnoreCase("parent") ? ModelConstants.IS_PARENT_OF
|
||||
: ModelConstants.IS_CHILD_OF);
|
||||
r.setRelClass(rs.getString("type"));
|
||||
r.setSource(orgId1);
|
||||
r.setTarget(orgId2);
|
||||
r.setCollectedfrom(collectedFrom);
|
||||
|
|
Loading…
Reference in New Issue