GlideProperties documentation

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā06-23-2022 07:39 AM
I'm looking for info/documentation about the "GlideProperties" method.
I see it everywhere in server-side code, things like
GlideProperties.getBoolean
GlideProperties.getInt
GlideProperties.get
So I'd like more info on all the things available with "GlideProperties", and an explanation of the parameters accepted/needed for getBoolean() getInt() get()
1st, where can I get the detailed info?
2nd, why isn't this documented in on the official SN docs site?

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā06-25-2022 02:14 PM
Hi,
GlideProperties isn't documented as it's not intended for our use, ServiceNow expose the gs.getProperty and gs.setProperty for our use. These two APIs are available in both global and scoped applications.
GlideProperties is a java class [com.glide.util.GlideProperties] and with most java classes, are undocumented