summaryrefslogtreecommitdiffstats
path: root/ecomp-portal-BE/src/main/java/org/openecomp/portalapp/portal/service/PersUserAppService.java
blob: 8096bc3c2678027b0be41ec4bca8a84a21b0773f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package org.openecomp.portalapp.portal.service;

import org.openecomp.portalapp.portal.domain.EPApp;
import org.openecomp.portalapp.portal.domain.EPUser;

public interface PersUserAppService {

	
	/**
	 * Sets the appropriate code in the user personalization table to indicate
	 * the application is (de)selected and/or pending.
	 * 
	 * @param user
	 *            EP User
	 * @param app
	 *            EP Application
	 * @param select
	 *            True or false
	 * @param select
	 *            True or false
	 */
	void setPersUserAppValue(EPUser user, EPApp app, boolean select, boolean pending);
	
}