| | |
| | | private Component parentComponet = null; |
| | | private Map<String, String> attrNameAndValMap = new LinkedHashMap();//存储属性名称(包含内部名称和外部名称)和对应的值 |
| | | private String tokenUrl= ConfigUtils.getConfigValue("410.code.token.url","http://127.0.0.1:37000/ubcs-auth/oauth/token"); |
| | | |
| | | private String[] fields; |
| | | private String[] Values; |
| | | /** |
| | | * 存储分类的Map,key:分类名称,value:分类值 |
| | | */ |
| | |
| | | public CodeApplyFor410Dialog(JDialog dialog, String clsfName, String deptName) { |
| | | this(dialog, "pdmUser", clsfName, deptName,new String[]{}); |
| | | } |
| | | public CodeApplyFor410Dialog(Frame frame, String clsfName, String deptName,String[] fields,String[] values){ |
| | | this.setModal(true); |
| | | parentComponet = frame; |
| | | this.userName = userName; |
| | | this.clsfName = clsfName; |
| | | this.deptName = deptName; |
| | | this.fields=fields; |
| | | this.Values=values; |
| | | //this.libName = libName; |
| | | init(); |
| | | |
| | | } |
| | | public CodeApplyFor410Dialog(Frame frame, String userName, String clsfName, String deptName, String[] libName){ |
| | | super(frame, true); |
| | | VCISwingUtil.setClientMainFrame(frame); |