修改动态库名字
This commit is contained in:
parent
6c284fabba
commit
defb43c05b
@ -1,27 +1,27 @@
|
||||
package com.sunyard.security.sdf;
|
||||
|
||||
/**
|
||||
* 动态库枚举类
|
||||
* @author admin
|
||||
*/
|
||||
public enum LibEnum {
|
||||
|
||||
/**
|
||||
* 动态库路径
|
||||
*/
|
||||
LIB_PATH("./lib"),
|
||||
LIB_NAME("libsdf");
|
||||
|
||||
/**
|
||||
* 值
|
||||
*/
|
||||
private final String value;
|
||||
|
||||
LibEnum(String value) {
|
||||
this.value = value;
|
||||
}
|
||||
|
||||
public String getValue() {
|
||||
return value;
|
||||
}
|
||||
}
|
||||
package com.sunyard.security.sdf;
|
||||
|
||||
/**
|
||||
* 动态库枚举类
|
||||
* @author admin
|
||||
*/
|
||||
public enum LibEnum {
|
||||
|
||||
/**
|
||||
* 动态库路径
|
||||
*/
|
||||
LIB_PATH("./lib"),
|
||||
LIB_NAME("sdf");
|
||||
|
||||
/**
|
||||
* 值
|
||||
*/
|
||||
private final String value;
|
||||
|
||||
LibEnum(String value) {
|
||||
this.value = value;
|
||||
}
|
||||
|
||||
public String getValue() {
|
||||
return value;
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user