Which jar files implement the public API for Appian 19.4

The jars shipped with the Eclipse bundle "Appian Developer Edition" are very old and the documented public API differs in some cases from what is actually available.

For example the 19.4 javadocs expose com.appiancorp.suiteapi.applications.Application method getObjectsByType(java.lang.Long appianTypeLong) but the jars available in Eclipse only support the deprecated method getObjectsByType(Type<H,I,U>

For this particular problem the jar bundled with Eclipse is appian-suiteapi.jar. The closes equivalent jar I can find in the 19.4 binaries appian-suiteapi-19.4.80.0.jar does not contain the required package.

  Discussion posts and replies are publicly visible

Parents Reply
  • Thanks Elliot, that is helpful - I had not realized the public API was consolidated into a single jar now. I have a quick follow up question... Previously the annotation @type mapped to an import for com.appiancorp.suiteapi.type.Type but that does not seem to be available now. What class should I import to enable custom type function parameters (and I did read the documentation for this one - if it's inn there it's not apparent)

Children