package jp.dip.arimodoki.model;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.annotation.Scope;
import org.springframework.stereotype.Component;
@Scope("prototype")
@Component
public final class FormZip implements FormZipIf {
@Autowired
private JsonReqAreaIf jsonReqArea;
public JsonReqAreaIf getJsonReqArea() {
return jsonReqArea;
}
public void setJsonReqArea(JsonReqAreaIf jsonReqArea) {
this.jsonReqArea = jsonReqArea;
}
private Object prefList;
public Object getPrefList() {
return prefList;
}
public void setPrefList(Object prefList) {
this.prefList = prefList;
}
}
|