package songND.ws3;

import javax.jws.WebService;

@WebService(targetNamespace = "http://myproject.com/NDWS3/" )
public class LoginWS3Impl implements LoginWS3{

	int stato = 0;
    
    public boolean doLogin(String user)throws Exception{
    	if(stato == 0){
    		
    
    	stato = 1;
    	return true;
    }else throw new Exception("Operazione non disponibile in questo stato per il servizio LoginWS3");
    	}
    public int getStatus(){
    	return stato;
    }
    
    
}