Package upc.iluminados.webservice

Source Code of upc.iluminados.webservice.ServiciosUsuarioImpl

/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/

package upc.iluminados.webservice;

import javax.jws.WebService;
import upc.iluminados.modelo.Usuario;

/**
*
* @author Ada
*/

@WebService(endpointInterface = "upc.iluminados.webservice.ServiciosUsuario")
public class ServiciosUsuarioImpl implements ServiciosUsuario{

    @Override
    public Usuario obtenerUsuario(String login, String password) {
        Usuario result = new Usuario();
        return result;
    }

}
TOP

Related Classes of upc.iluminados.webservice.ServiciosUsuarioImpl

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.