Java Edge SDK not pushing properties to Composer?
Hi all,
I have been working on a Java application that pulls a list from a SharePoint server and stores the list into an InfoTable property. I have my properties defined as so:
@ThingworxPropertyDefinitions(properties = {
@ThingworxPropertyDefinition(
name="List",
description="Demo SharePoint List",
baseType="INFOTABLE",
category="Status",
aspects={"isReadOnly:true"}
),
@ThingworxPropertyDefinition(
name="FaultStatus",
description="Fault status",
baseType="BOOLEAN",
category="Faults",
aspects={"isReadOnly:true"}
),
and initializing from annotations like:
super.initializeFromAnnotations();
Now the client is being picked up by Monitors > RemoteThings. and the isConnected property is being set to true.
Is there something I'm missing for why the application isn't pushing the defined properties in the code?
Thanks,
Bryan

