Salome HOME
dc5c4cb98dd4d260abad740a896bdcfa2d32f09c
[tools/siman.git] / Workspace / Siman-Common / src / org / splat / dal / bo / som / ContributorRelation.java
1 package org.splat.dal.bo.som;
2 /**
3  * 
4  * @author    Daniel Brunier-Coulin
5  * @copyright OPEN CASCADE 2012-2014
6  */
7
8 import org.splat.dal.bo.kernel.User;
9
10
11 public class ContributorRelation extends ActorRelation {
12
13 //  ==============================================================================================================================
14 //  Constructors
15 //  ==============================================================================================================================
16
17 //  Database fetch constructor
18     protected ContributorRelation () {
19     }
20 //  Initialization constructor
21     public ContributorRelation (Study from, User to) {
22 //  --------------------------------------------------
23       super(from, to);
24     }
25 }