Sounds great, but did you forget the github url? :)

Mark

On Thu, Mar 3, 2011 at 6:34 AM, Barry Books <trs...@gmail.com> wrote:
> Now that I figured out GitHub I'm posting another library I use all
> the time. This is really just a AppModule that makes the AWS java
> library work as a set of Tapestry Services. Then you can do things
> like
>
> public class S3Index {
>        @Inject
>        private AmazonS3 amazonS3;
>
>        @Property
>        private List<Bucket> buckets;
>
>        @BeginRender
>        void beginRender() {
>                buckets = amazonS3.listBuckets();
>        }
> }
>
> S3Index.tml
>
> <t:grid t:id="buckets"/>
>
>
> There is also service that uses a javax.mail.Session to send email via
> SES so it's easy to convert existing emails to SES.
>
> See
> http://aws.amazon.com/sdkforjava/
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
> For additional commands, e-mail: users-h...@tapestry.apache.org
>
>

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
For additional commands, e-mail: users-h...@tapestry.apache.org

Reply via email to