Files
spring-soap/jsf/src/main/java/com/baeldung/springintegration/dao/UserManagementDAO.java
2016-05-26 12:58:31 +02:00

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);
}