1 package net.sf.josceleton.connection.impl.service.user;
2
3 import net.sf.josceleton.connection.api.service.user.UserService;
4
5 /**
6 * Extends the common <code>UserService</code> interface with the <code>UserStore</code> interface only.
7 *
8 * Transformer needs another view of a single object, therefore merging two interfaces and implement it once.
9 *
10 * @since 0.3
11 * @see UserServiceImpl
12 */
13 public interface UserServiceInternal extends
14 UserService,
15 UserStore,
16 UserServiceCollectionResponder {
17
18 // merge interface only
19
20 }