@Documented @Retention(value=RUNTIME) @Target(value=METHOD) public @interface Post
@Post
public MyOutputBean accept(MyInputBean input);
@Post("json")
public String acceptJson(String value);
@Post("xml|json:xml|json")
public Representation accept(Representation xmlValue);
@Post("json?param=val")
public Representation acceptWithParam(String value);
@Post("json?param")
public Representation acceptWithParam(String value);
@Post("?param")
public Representation acceptWithParam(String value);
public abstract String value
MetadataService. For a list of
all predefined extensions, please check
MetadataService.addCommonExtensions(). New extension can be
registered using
MetadataService.addExtension(String, org.restlet.data.Metadata)
method.Copyright © 2005–2025. All rights reserved.