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

package net.pascalalma.mybusinessservices;


import javax.ejb.Remote;

/**
 *
 * @author pascal
 */
@Remote
//@WebService
//@SOAPBinding(style = javax.jws.soap.SOAPBinding.Style.DOCUMENT
//            ,use = javax.jws.soap.SOAPBinding.Use.LITERAL
//            ,parameterStyle = javax.jws.soap.SOAPBinding.ParameterStyle.WRAPPED)
public interface CustomerBusinessServiceRemote {

    void validateCustomer(String custId);
}
