This entry is part of the Maximo Java Development series.
Here is a small piece of Java code that can be used to retrieve a Maximo system property in Java using MxServer.getConfig() method.
Properties configData = MXServer.getMXServer().getConfig();
String prop = configData.getProperty("mxe.adminEmail");
Replace mxe.adminEmail with your property.
Read system property in a Java class
Hello,
Sorry about posting here.
I want to ask if someone can help me.
I want to sort my resultset on the start center by the difference between target finish and current date.
Thank you
Hi, Reply was very late you can create any non-persistent/persistent field on the same object and put a formula on that which calculates the difference between two dates, and then that field you can use in the query as order by.
Best place to ask for help is Maximo forum on developerWorks.
Looks like getConfig() is deprecated and you use MXServer.getMXServer().getSystemProperties().getProperty({name}) instead.
You can also use:
MXServer.getMXServer().getMxServerConfig().getProperty(“{propertyName}”);
While reading property, we are using MXServer.geXServver()…….
Do we need close the MXServer connection?