Package org.xwiki.rest.resources.pages
Interface PageTranslationResource
-
public interface PageTranslationResource
- Version:
- $Id: 32943f3554af71af0e7224d843a5d92a600483e2 $
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
deletePageTranslation(String wikiName, String spaceName, String pageName, String language)
Page
getPageTranslation(String wikiName, String spaceName, String pageName, String language, Boolean withPrettyNames)
javax.ws.rs.core.Response
putPageTranslation(String wikiName, String spaceName, String pageName, String language, Boolean minorRevision, Page page)
-
-
-
Method Detail
-
getPageTranslation
Page getPageTranslation(String wikiName, @Encoded String spaceName, String pageName, String language, Boolean withPrettyNames) throws XWikiRestException
- Throws:
XWikiRestException
-
putPageTranslation
javax.ws.rs.core.Response putPageTranslation(String wikiName, @Encoded String spaceName, String pageName, String language, Boolean minorRevision, Page page) throws XWikiRestException
- Throws:
XWikiRestException
-
deletePageTranslation
void deletePageTranslation(String wikiName, @Encoded String spaceName, String pageName, String language) throws XWikiRestException
- Throws:
XWikiRestException
-
-