Where are plugin values stored in the backend?

Kelsey Whiting August 4, 2015

I am looking for the JEditor html values on the back end but cannot find the tables these are stored in. Does anyone know?

1 answer

0 votes
crf
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
August 4, 2015

I don't know anything about that plugin in particular.

Plugins have several different places that they can store things, notably:

  • PropertySet – These would get stored under the various property tables, but it may be difficult to guess what "entity_name" they used.
  • SAL's PluginSettings – These essentially get mapped onto PropertySet as well.  If the plugin used the "global" settings, then these end up mashed together under the "jira.properties" entity name like normal Application Properties do.
  • Active Objects – This is the most widely used method, I think.  It has a administrative UI that lists the plugins that are using it and the names of their tables.  Look under "Plugin Data Storage" as an administrator.
  • JsonEntityPropertyManager – This is the newest of the bunch and stores arbitrary clobs of JSON data for the plugin.  Finding the entries in this poses the same problem that PropertySet does; you have to somehow figure out what "entity_name" was used to store it against.

 

Suggest an answer

Log in or Sign up to answer