summaryrefslogtreecommitdiffstats
path: root/ecomp-sdk/epsdk-core/src/main/java/org/openecomp/portalsdk/core/service/UserService.java
blob: 170361c3c7e013157b9a3c87d23552623b67c41c (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 User object
	 * @throws Exception
	 * Method getUser returns the User Object
	 */
	User getUser(String id) throws Exception;
}