User ToDo Link Entity Business Object Builder

Class declaration

The class must extend AbstractEntityBOBuilder. The primary key data type and the entity's Dtls data type are Long and UserToDoLinkDtls respectively. Hence, these types must be specified in the class declaration as follows:

class UserToDoLinkEntityBOBuilder extends
	AbstractEntityBOBuilder<Long, UserToDoLinkDtls>{
}

getName() : Returning the name of the entity

The method getName() has to be overridden in order to return the name of the entity that is unique across the system - i.e. in this case, the string UserToDoLink can be returned.

getEntityAdapter() : Returning the Entity Adapter instance

The method getEntityAdapter() has to be overridden to return an instance of the adapter class, i.e. UserToDoLinkAdapter.