refactor: dead class remove
parent
195c67c0dd
commit
fab0573aed
@ -1,40 +0,0 @@
|
|||||||
// package kr.xit.framework.core.resolver.vo;
|
|
||||||
//
|
|
||||||
// import javax.xml.bind.annotation.XmlElement;
|
|
||||||
// import javax.xml.bind.annotation.XmlRootElement;
|
|
||||||
// import javax.xml.bind.annotation.XmlType;
|
|
||||||
//
|
|
||||||
// @XmlRootElement(name = "result")
|
|
||||||
// @XmlType(name="Data", namespace="kr.xit.framework.core.resolver.vo.Data", propOrder={"key", "value"})
|
|
||||||
// public class DataVO {
|
|
||||||
//
|
|
||||||
// String key;
|
|
||||||
// String value;
|
|
||||||
//
|
|
||||||
// public String getKey() {
|
|
||||||
// return key;
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
// @XmlElement(name="key")
|
|
||||||
// public void setKey(String key) {
|
|
||||||
// this.key = key;
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
// public String getValue() {
|
|
||||||
// return value;
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
// @XmlElement(name="value")
|
|
||||||
// public void setValue(String value) {
|
|
||||||
// this.value = value;
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
// @Override
|
|
||||||
// public String toString() {
|
|
||||||
// StringBuffer sb = new StringBuffer();
|
|
||||||
// sb.append(getKey());
|
|
||||||
// sb.append("__");
|
|
||||||
// sb.append(getValue());
|
|
||||||
// return sb.toString();
|
|
||||||
// }
|
|
||||||
// }
|
|
@ -1,81 +0,0 @@
|
|||||||
// package kr.xit.framework.core.resolver.vo;
|
|
||||||
//
|
|
||||||
// import java.util.List;
|
|
||||||
//
|
|
||||||
// import javax.xml.bind.annotation.XmlElement;
|
|
||||||
// import javax.xml.bind.annotation.XmlElementRef;
|
|
||||||
// import javax.xml.bind.annotation.XmlElementRefs;
|
|
||||||
// import javax.xml.bind.annotation.XmlElementWrapper;
|
|
||||||
// import javax.xml.bind.annotation.XmlRootElement;
|
|
||||||
// import javax.xml.bind.annotation.XmlType;
|
|
||||||
//
|
|
||||||
// @XmlRootElement(name="result")
|
|
||||||
// @XmlType(name="Result", namespace="kr.xit.framework.core.resolver.vo.Result", propOrder={"code", "message", "recordset"})
|
|
||||||
// public class Result<T> {
|
|
||||||
//
|
|
||||||
// String code = ""; // 작업 결과 코드
|
|
||||||
// String message = ""; // 작업 결과 메시지
|
|
||||||
//
|
|
||||||
// List<T> recordset; // 결과셋
|
|
||||||
//
|
|
||||||
// public Result(){
|
|
||||||
//
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
// public String getCode() {
|
|
||||||
// return code;
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
// @XmlElement(name="code")
|
|
||||||
// public void setCode(String code) {
|
|
||||||
// this.code = code;
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
// public String getMessage() {
|
|
||||||
// return message;
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
// @XmlElement(name="message")
|
|
||||||
// public void setMessage(String message) {
|
|
||||||
// this.message = message;
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
// @XmlElementWrapper(name="recordset")
|
|
||||||
// @XmlElementRefs({
|
|
||||||
// @XmlElementRef(name="record", type=DataVO.class)
|
|
||||||
// })
|
|
||||||
// public List<T> getRecordset() {
|
|
||||||
// return recordset;
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
// public void setRecordset(List<T> recordset) {
|
|
||||||
// this.recordset = recordset;
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
// @Override
|
|
||||||
// public String toString() {
|
|
||||||
// StringBuffer result = new StringBuffer();
|
|
||||||
// result.append(code);
|
|
||||||
// result.append("__");
|
|
||||||
// result.append(message);
|
|
||||||
//
|
|
||||||
// if(recordset != null){
|
|
||||||
// if(recordset.size() != 0){
|
|
||||||
// StringBuffer record = new StringBuffer();
|
|
||||||
// record.append("_^");
|
|
||||||
// boolean start = true;
|
|
||||||
// for(T item : recordset){
|
|
||||||
// if(start){
|
|
||||||
// start = false;
|
|
||||||
// }else{
|
|
||||||
// record.append("#!");
|
|
||||||
// }
|
|
||||||
// record.append(item);
|
|
||||||
// }
|
|
||||||
// result.append(record.toString());
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
// return result.toString();
|
|
||||||
// }
|
|
||||||
// }
|
|
Loading…
Reference in New Issue