Package lumis.portal.css
Class CssConfig
- java.lang.Object
-
- lumis.portal.css.CssConfig
-
@StableMinor(version="14.1", sinceVersion="4.0") public class CssConfig extends Object
Value class for Css properties- Since:
- 4.0.0
- Version:
- $Revision: 24683 $ $Date: 2021-08-23 18:55:58 -0300 (Mon, 23 Aug 2021) $
-
-
Constructor Summary
Constructors Constructor Description CssConfig()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
deserialize(Node pageNode)
boolean
equals(Object obj)
String
getDescription()
String
getFilePath()
String
getId()
String
getName()
int
hashCode()
void
serialize(OutputStream outputStream)
void
setDescription(String description)
void
setFilePath(String filePath)
void
setId(String cssId)
void
setName(String name)
-
-
-
Method Detail
-
getId
public String getId()
- Returns:
- Returns the id.
-
setId
public void setId(String cssId)
- Parameters:
cssId
- The cssId to set.
-
getDescription
public String getDescription()
- Returns:
- Returns the description.
-
setDescription
public void setDescription(String description)
- Parameters:
description
- The description to set.
-
getFilePath
public String getFilePath()
- Returns:
- Returns the filePath.
-
setFilePath
public void setFilePath(String filePath)
- Parameters:
filePath
- The filePath to set.
-
getName
public String getName()
- Returns:
- Returns the name.
-
setName
public void setName(String name)
- Parameters:
name
- The name to set.
-
serialize
public void serialize(OutputStream outputStream) throws PortalException
- Throws:
PortalException
-
deserialize
public void deserialize(Node pageNode) throws PortalException
- Throws:
PortalException
-
-