nexus site path corrected
[portal.git] / ecomp-portal-BE / src / main / java / org / openecomp / portalapp / portal / service / PersUserAppService.java
1 package org.openecomp.portalapp.portal.service;
2
3 import org.openecomp.portalapp.portal.domain.EPApp;
4 import org.openecomp.portalapp.portal.domain.EPUser;
5
6 public interface PersUserAppService {
7
8         
9         /**
10          * Sets the appropriate code in the user personalization table to indicate
11          * the application is (de)selected and/or pending.
12          * 
13          * @param user
14          *            EP User
15          * @param app
16          *            EP Application
17          * @param select
18          *            True or false
19          * @param select
20          *            True or false
21          */
22         void setPersUserAppValue(EPUser user, EPApp app, boolean select, boolean pending);
23         
24 }