You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
542 B
28 lines
542 B
/* |
|
* To change this template, choose Tools | Templates |
|
* and open the template in the editor. |
|
*/ |
|
|
|
package kr.co.kihyun.beans.entity.ecross; |
|
|
|
import kr.co.kihyun.moumi.MoumiConfig; |
|
|
|
/** |
|
* |
|
* @author bhs |
|
*/ |
|
public enum NeisSystem { |
|
CMC(MoumiConfig.getMessageBundle().getString("moumi.message.neisSystem.cmc")), |
|
GAC(MoumiConfig.getMessageBundle().getString("moumi.message.neisSystem.gac")); |
|
|
|
private String name; |
|
|
|
private NeisSystem(String name) { |
|
this.name = name; |
|
} |
|
|
|
@Override |
|
public String toString() { |
|
return this.name; |
|
} |
|
}
|
|
|