17 lines
263 B
Java
17 lines
263 B
Java
/*
|
|
* To change this template, choose Tools | Templates
|
|
* and open the template in the editor.
|
|
*/
|
|
package com.baeldung.springintegration.dao;
|
|
|
|
|
|
/**
|
|
* @author Tayo
|
|
*/
|
|
public interface UserManagementDAO {
|
|
|
|
public boolean createUser(String newUserData);
|
|
|
|
|
|
}
|