Bug 519476 - Wrong mapping in org.eclipse.om2m.commons.entities.LabelEntity class
Summary: Wrong mapping in org.eclipse.om2m.commons.entities.LabelEntity class
Status: UNCONFIRMED
Alias: None
Product: OM2M
Classification: IoT
Component: Platform (show other bugs)
Version: unspecified   Edit
Hardware: PC Windows NT
: P3 normal
Target Milestone: ---   Edit
Assignee: Project Inbox CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2017-07-10 16:22 EDT by Rohit Sachan CLA
Modified: 2017-07-10 16:22 EDT (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Rohit Sachan CLA 2017-07-10 16:22:09 EDT
What is current? 

	@ManyToMany(targetEntity = CSEBaseEntity.class, mappedBy = "labelsEntities")
	protected List<AeEntity> linkedCsb;


What should be?

@ManyToMany(targetEntity = CSEBaseEntity.class, mappedBy = "labelsEntities")
	protected List<CSEBaseEntity> linkedCsb;