Return-Path: Delivered-To: apmail-cxf-issues-archive@www.apache.org Received: (qmail 42046 invoked from network); 12 Sep 2008 16:04:05 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 12 Sep 2008 16:04:05 -0000 Received: (qmail 99119 invoked by uid 500); 12 Sep 2008 16:04:02 -0000 Delivered-To: apmail-cxf-issues-archive@cxf.apache.org Received: (qmail 99023 invoked by uid 500); 12 Sep 2008 16:04:01 -0000 Mailing-List: contact issues-help@cxf.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cxf.apache.org Delivered-To: mailing list issues@cxf.apache.org Received: (qmail 99009 invoked by uid 99); 12 Sep 2008 16:04:01 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 12 Sep 2008 09:04:01 -0700 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.140] (HELO brutus.apache.org) (140.211.11.140) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 12 Sep 2008 16:03:12 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 4E3C6234C1DD for ; Fri, 12 Sep 2008 09:03:44 -0700 (PDT) Message-ID: <1866810818.1221235424319.JavaMail.jira@brutus> Date: Fri, 12 Sep 2008 09:03:44 -0700 (PDT) From: "Daniel Kulp (JIRA)" To: issues@cxf.apache.org Subject: [jira] Resolved: (CXF-1782) ServletController.generateServiceList is private - cannot extend/change the way a service list is built In-Reply-To: <2008460696.1220562464312.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/CXF-1782?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Daniel Kulp resolved CXF-1782. ------------------------------ Resolution: Fixed Fix Version/s: 2.1.3 2.0.9 Assignee: Daniel Kulp Patch applied. Thanks! > ServletController.generateServiceList is private - cannot extend/change the way a service list is built > ------------------------------------------------------------------------------------------------------- > > Key: CXF-1782 > URL: https://issues.apache.org/jira/browse/CXF-1782 > Project: CXF > Issue Type: Improvement > Components: Transports > Affects Versions: 2.1.2 > Environment: All > Reporter: Peter Liljenberg > Assignee: Daniel Kulp > Fix For: 2.0.9, 2.1.3 > > Attachments: patch.txt > > Original Estimate: 0.02h > Remaining Estimate: 0.02h > > The ServletController.generateService method is private instead of protected. This means that in order to change the way/layout of the service list I have to override the invoke method instead, which is not recommended since it contains some logic that might be updated in a later version. > Proposed solution: > Change: private void generateServiceList(HttpServletRequest request, HttpServletResponse response) throws IOException > To: protected void generateServiceList(HttpServletRequest request, HttpServletResponse response) throws IOException -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.