Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3

...

The following table shows the Atom Feed data models and the representations in which it the Atom data models can be serialized and de-serialized.

...

The following code example demonstrates the consumption of an Atom Feed.

Code Block
        @POST
    @Consumes(MediaType.APPLICATION_ATOM_XML)
    public void setFeed(AtomFeed feed) {
        ...

        return;
    }

...