1 package fr.paris.lutece.plugins.identitypicker.business;
2
3 import fr.paris.lutece.plugins.identitystore.v3.web.rs.dto.contract.ServiceContractDto;
4
5 public class Rules
6 {
7 Referential referential;
8 ServiceContractDto contract;
9
10 public Rules( Referential referential, ServiceContractDto contract )
11 {
12 this.referential = referential;
13 this.contract = contract;
14 }
15
16 public Referential getReferential( )
17 {
18 return referential;
19 }
20
21 public ServiceContractDto getContract( )
22 {
23 return contract;
24 }
25
26 }