Package net.officefloor.jpa.test
Interface IMockEntity
-
public interface IMockEntity
MockEntity
to allow differentEntity
implementations for each implementing vendor.- Author:
- Daniel Sagenschneider
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getDescription()
Obtains the description.java.lang.Long
getId()
Obtains the identifier.java.lang.String
getName()
Obtains the name.void
setDescription(java.lang.String description)
Specifies the description.void
setName(java.lang.String name)
Specifies the name.
-
-
-
Method Detail
-
getId
java.lang.Long getId()
Obtains the identifier.- Returns:
- Identifier.
-
getName
java.lang.String getName()
Obtains the name.- Returns:
- Name.
-
setName
void setName(java.lang.String name)
Specifies the name.- Parameters:
name
- Name.
-
getDescription
java.lang.String getDescription()
Obtains the description.- Returns:
- Description.
-
setDescription
void setDescription(java.lang.String description)
Specifies the description.- Parameters:
description
- Description.
-
-