Package evo.search.io.entities
Class Project
- java.lang.Object
-
- evo.search.io.entities.Project
-
-
Constructor Summary
Constructors Constructor Description Project()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected boolean
canEqual(Object other)
boolean
equals(Object o)
List<Configuration>
getConfigurations()
List of projects registered configurations.String
getName()
Projects name.Path
getPath()
Projects file system path.String
getVersion()
Projects version number for file compatibility.int
hashCode()
Project
parse(org.dom4j.Element projectSettings)
Parse aElement
and return the entity.org.dom4j.Element
serialize()
Serialize the entity into aElement
.void
setConfigurations(List<Configuration> configurations)
List of projects registered configurations.void
setName(String name)
Projects name.void
setPath(Path path)
Projects file system path.void
setVersion(String version)
Projects version number for file compatibility.String
toString()
-
-
-
Method Detail
-
serialize
public org.dom4j.Element serialize()
Description copied from interface:XmlEntity
Serialize the entity into aElement
.
-
parse
public Project parse(org.dom4j.Element projectSettings)
Description copied from interface:XmlEntity
Parse aElement
and return the entity.
-
getVersion
public String getVersion()
Projects version number for file compatibility.
-
getPath
public Path getPath()
Projects file system path.
-
getName
public String getName()
Projects name.
-
getConfigurations
public List<Configuration> getConfigurations()
List of projects registered configurations.
-
setVersion
public void setVersion(String version)
Projects version number for file compatibility.
-
setPath
public void setPath(Path path)
Projects file system path.
-
setName
public void setName(String name)
Projects name.
-
setConfigurations
public void setConfigurations(List<Configuration> configurations)
List of projects registered configurations.
-
canEqual
protected boolean canEqual(Object other)
-
-