You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
762 B
Java
22 lines
762 B
Java
2 years ago
|
package com.constant;
|
||
|
|
||
|
import weaver.interfaces.dito.comInfo.PropBean;
|
||
|
|
||
|
public class Constants {
|
||
|
public static String bpm_app_workflowurl = PropBean.getUfPropValue("bpm_app_workflowurl");
|
||
|
|
||
|
public static String portal_doneurl = PropBean.getUfPropValue("portal_doneurl");
|
||
|
|
||
|
public static String bpm_app_requesturl = PropBean.getUfPropValue("bpm_app_requesturl");
|
||
|
|
||
|
public static String portal_todourl = PropBean.getUfPropValue("portal_todourl");
|
||
|
|
||
|
public static String username = PropBean.getUfPropValue("username");
|
||
|
|
||
|
public static String passwd = PropBean.getUfPropValue("passwd");
|
||
|
|
||
|
public static String center = PropBean.getUfPropValue("center");
|
||
|
|
||
|
public static String bpm_workflowurl = PropBean.getUfPropValue("bpm_workflowurl");
|
||
|
}
|