Return-Path: Delivered-To: apmail-struts-user-archive@www.apache.org Received: (qmail 58121 invoked from network); 5 Feb 2009 13:59:52 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 5 Feb 2009 13:59:52 -0000 Received: (qmail 59869 invoked by uid 500); 5 Feb 2009 13:59:43 -0000 Delivered-To: apmail-struts-user-archive@struts.apache.org Received: (qmail 59832 invoked by uid 500); 5 Feb 2009 13:59:43 -0000 Mailing-List: contact user-help@struts.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Help: List-Post: List-Id: "Struts Users Mailing List" Reply-To: "Struts Users Mailing List" Delivered-To: mailing list user@struts.apache.org Received: (qmail 59821 invoked by uid 99); 5 Feb 2009 13:59:43 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 05 Feb 2009 05:59:43 -0800 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: local policy) Received: from [217.7.81.164] (HELO mx1.idowa.net) (217.7.81.164) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 05 Feb 2009 13:59:35 +0000 Received: from mx1.idowa.net (unknown [127.0.0.1]) by mx1-int.idowa.de (Postfix) with ESMTP id D8ADD680008C for ; Thu, 5 Feb 2009 13:59:12 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.2.3 (2007-08-08) on hermes.idowa.de X-Spam-Level: Received: from mail0.vn.idowa.de (vl-gw-float.sr.idowa.net [217.7.81.140]) by mx1-sa.idowa.net (Postfix) with ESMTP id BEA29680008B for ; Thu, 5 Feb 2009 13:59:12 +0000 (UTC) Received: from [192.168.31.116] (dhcp-client-116.idowa.vn.idowa.de [192.168.31.116]) by mail0.vn.idowa.de (Postfix) with ESMTP id B8C4E11001D83 for ; Thu, 5 Feb 2009 14:59:12 +0100 (CET) Message-ID: <498AF0B7.8060601@idowa.de> Date: Thu, 05 Feb 2009 14:59:19 +0100 From: Dominik Fischer User-Agent: Thunderbird 2.0.0.19 (Windows/20081209) MIME-Version: 1.0 To: user@struts.apache.org Subject: Access Struts2 Action Properties - Noob Content-Type: text/plain; charset=ISO-8859-15; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Old-Spam-Status: No, score=-2.2 required=5.0 tests=AWL,BAYES_00 autolearn=ham version=3.2.3 Hello folks, how can i access a property (i.e. data) of a class like.... public class BabyAction extends ActionSupport implements RequestAware { private List data; public List getData() { return this.data; } public void setSearch(List data) { this.data = data; } ... } ... in a custom tag like ... ... without the help of request.setParameter() i.e. ????? Thankz Dom --------------------------------------------------------------------- To unsubscribe, e-mail: user-unsubscribe@struts.apache.org For additional commands, e-mail: user-help@struts.apache.org