Package com.avoka.tm.vo
Class Space
- java.lang.Object
-
- com.avoka.tm.vo.Space
-
public class Space extends java.lang.Object
Provide a Form Space value object class.- Since:
- 5.0.0
-
-
Field Summary
Fields Modifier and Type Field Description java.lang.String
contextPath
The space context path.java.lang.String
description
The space name.java.lang.Long
id
The space id (PK).java.lang.String
name
The space name.java.util.Map<java.lang.String,java.lang.String>
propertyMap
The space property name.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
toString()
-
-
-
Field Detail
-
id
public final java.lang.Long id
The space id (PK).
-
name
public final java.lang.String name
The space name.
-
description
public final java.lang.String description
The space name.
-
contextPath
public final java.lang.String contextPath
The space context path.
-
propertyMap
public final java.util.Map<java.lang.String,java.lang.String> propertyMap
The space property name.
-
-
Constructor Detail
-
Space
public Space(com.avoka.fc.core.entity.Portal portal)
Create a Space value object with the given portal entity parameter.- Parameters:
portal
- the portal entity parameter (required)
-
Space
public Space(java.util.Map fields)
Create a unit testing Space value object with the given fields.- Parameters:
fields
- the submission entity fields (required)- Since:
- 5.1.4
-
-