@Path(value="feeds") public class CombinedFeedResource extends Object
| Constructor and Description |
|---|
CombinedFeedResource() |
| Modifier and Type | Method and Description |
|---|---|
javax.ws.rs.core.Response |
create(CombinedFeed insertedFeed) |
javax.ws.rs.core.Response |
delete(String feedId) |
javax.ws.rs.core.Response |
getEntries(String feedId) |
@POST @Consumes(value="application/json") @Produces(value="application/json") public javax.ws.rs.core.Response create(CombinedFeed insertedFeed)
@DELETE
@Path(value="/{id}")
public javax.ws.rs.core.Response delete(@PathParam(value="id")
String feedId)
@GET
@Path(value="/{id}/entries")
@Produces(value={"application/json","application/atom+xml"})
public javax.ws.rs.core.Response getEntries(@PathParam(value="id")
String feedId)
Copyright © 2007-2016, Oracle and/or its affiliates. All Rights Reserved. Use is subject to license terms.