Package org.silverpeas.core.wbe
Class WbeEdition
- java.lang.Object
-
- org.silverpeas.core.wbe.WbeEdition
-
- Direct Known Subclasses:
DragAndDropWebEditorEdition
public abstract class WbeEdition extends Object
Represents the preparation of a Web Browser Edition.This object provides the following data:
- Author:
- silveryocha
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
WbeEdition.Configuration
This class permits to handle additional configuration that can set by Silverpeas and be used by WBE clients.
-
Constructor Summary
Constructors Modifier Constructor Description protected
WbeEdition(WbeFile file, WbeUser user)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description WbeEdition.Configuration
getConfiguration()
Gets the configuration of the edition in order to specify some additional details about the edition.WbeFile
getFile()
Gets the WBE file of the edition.WbeUser
getUser()
Gets the WBE user which is editing the file.
-
-
-
Method Detail
-
getUser
public WbeUser getUser()
Gets the WBE user which is editing the file.- Returns:
- a
WbeUser
instance.
-
getConfiguration
public WbeEdition.Configuration getConfiguration()
Gets the configuration of the edition in order to specify some additional details about the edition.- Returns:
- the
WbeEdition.Configuration
associated to the edition.
-
-