summaryrefslogtreecommitdiffstats
path: root/ecomp-sdk/epsdk-core/src/main/java/org/openecomp/portalsdk/core/service/UserService.java
blob: 2cc28cc259e162e4649abc1c66212157ae07252e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package org.openecomp.portalsdk.core.service;

import org.openecomp.portalsdk.core.domain.User;

public interface UserService {

	
	/**
	 * 
	 * @param id orgUserID
	 * @return
	 * @throws Exception
	 * Method getUser returns the User Object
	 */
	User getUser(String id) throws Exception;
}