Return-Path: X-Original-To: apmail-chemistry-dev-archive@www.apache.org Delivered-To: apmail-chemistry-dev-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 6AB5617FEE for ; Thu, 23 Oct 2014 13:59:29 +0000 (UTC) Received: (qmail 11763 invoked by uid 500); 23 Oct 2014 13:59:29 -0000 Delivered-To: apmail-chemistry-dev-archive@chemistry.apache.org Received: (qmail 11710 invoked by uid 500); 23 Oct 2014 13:59:29 -0000 Mailing-List: contact dev-help@chemistry.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@chemistry.apache.org Delivered-To: mailing list dev@chemistry.apache.org Received: (qmail 11699 invoked by uid 99); 23 Oct 2014 13:59:29 -0000 Received: from ec2-54-191-145-13.us-west-2.compute.amazonaws.com (HELO mx1-us-west.apache.org) (54.191.145.13) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 23 Oct 2014 13:59:29 +0000 Received: from mx1-us-west.apache.org (localhost [127.0.0.1]) by mx1-us-west.apache.org (ASF Mail Server at mx1-us-west.apache.org) with ESMTP id C1F2E25DB8 for ; Thu, 23 Oct 2014 13:59:28 +0000 (UTC) Received: by mx1-us-west.apache.org (ASF Mail Server at mx1-us-west.apache.org, from userid 114) id B7332261F7; Thu, 23 Oct 2014 13:59:28 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on mx1-us-west.apache.org X-Spam-Level: X-Spam-Status: No, score=0.0 required=10.0 tests=RCVD_IN_DNSWL_NONE, UNPARSEABLE_RELAY autolearn=disabled version=3.4.0 Received: from plasma4.jpberlin.de (plasma4.jpberlin.de [80.241.57.33]) by mx1-us-west.apache.org (ASF Mail Server at mx1-us-west.apache.org) with ESMTPS id 2F00D25DB8 for ; Thu, 23 Oct 2014 13:59:28 +0000 (UTC) Received: from hefe.heinlein-support.de (hefe.heinlein-support.de [91.198.250.172]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by plasma.jpberlin.de (Postfix) with ESMTPS id 02AECA7551; Thu, 23 Oct 2014 15:58:50 +0200 (CEST) X-Virus-Scanned: amavisd-new at heinlein-support.de Received: from plasma.jpberlin.de ([91.198.250.140]) (using TLS with cipher AES256-SHA) by hefe.heinlein-support.de (hefe.heinlein-support.de [91.198.250.172]) (amavisd-new, port 10024) with ESMTPS id BaxpPeUKOnIa; Thu, 23 Oct 2014 15:58:49 +0200 (CEST) Received: from webmail.jpberlin.de (sinatra6.heinlein-hosting.de [91.198.250.42]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) (Authenticated sender: fmueller@jpberlin.de) by plasma.jpberlin.de (Postfix) with ESMTPSA id EFDF5A7442; Thu, 23 Oct 2014 15:58:48 +0200 (CEST) Received: from unPHLZQ+NinyXblrrlSjWCWzbjHa2B9fXhes8E1nwoqqdQgrgt3bMg== (ibGt9cwZfgj/7ZdWvUwt7K7RUJoyM0Ao) by webmail.jpberlin.de with HTTP (HTTP/1.1 POST); Thu, 23 Oct 2014 15:58:48 +0200 MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit Date: Thu, 23 Oct 2014 06:58:48 -0700 From: =?UTF-8?Q?Florian_M=C3=BCller?= To: dev@chemistry.apache.org Cc: Florent Guillaume Subject: Re: stopAfterService In-Reply-To: References: Message-ID: X-Sender: fmui@apache.org User-Agent: RoundCube Webmail X-Virus-Scanned: ClamAV using ClamSMTP Hi Florent, Yes, that is a typo. Please open an issue in JIRA. I'll fix it. - Florian > Florian, > > The stopAfterService implementations for the three bindings delegate to > beforeServiceCall... It's a typo, right, and should be > afterServiceCall? > > protected boolean stopAfterService(CmisService service) { > > if (!(service instanceof ProgressControlCmisService)) { > > return false; > > } > > return ((ProgressControlCmisService) > service).beforeServiceCall() == > Progress.STOP; > > } > > Florent