prenotice, fileoffer 추가
parent
5d270c1580
commit
124a9558ca
@ -0,0 +1,97 @@
|
||||
package cokr.xit.interfaces.sntris;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.function.Function;
|
||||
|
||||
import javax.xml.namespace.QName;
|
||||
|
||||
import org.apache.axis.constants.Style;
|
||||
import org.apache.axis.constants.Use;
|
||||
import org.apache.axis.description.ElementDesc;
|
||||
import org.apache.axis.description.OperationDesc;
|
||||
import org.apache.axis.description.ParameterDesc;
|
||||
import org.apache.axis.description.TypeDesc;
|
||||
|
||||
import cokr.xit.foundation.AbstractComponent;
|
||||
|
||||
public class Descriptor extends AbstractComponent {
|
||||
private String urn;
|
||||
|
||||
public Descriptor(String urn) {
|
||||
this.urn = urn;
|
||||
}
|
||||
|
||||
public QName qname(String name) {
|
||||
return qname(urn, name);
|
||||
}
|
||||
|
||||
public QName qname(String urn, String name) {
|
||||
return new QName(!isEmpty(urn) ? "urn:" + urn : "", name);
|
||||
}
|
||||
|
||||
private static final List<String> types = List.of("string", "int", "long", "double");
|
||||
|
||||
public QName oftype(String typeName) {
|
||||
String str = typeName.toLowerCase().replace("[]", "");
|
||||
|
||||
return types.contains(str) ?
|
||||
new QName("http://www.w3.org/2001/XMLSchema", str) :
|
||||
qname(typeName);
|
||||
}
|
||||
|
||||
public TypeDesc type(Class<?> klass, Function<Descriptor, ElementDesc[]> fields) {
|
||||
TypeDesc typeDesc = new TypeDesc(klass, true);
|
||||
typeDesc.setXmlType(qname(klass.getSimpleName()));
|
||||
|
||||
if (fields != null)
|
||||
for (ElementDesc field: fields.apply(this))
|
||||
typeDesc.addFieldDesc(field);
|
||||
|
||||
return typeDesc;
|
||||
}
|
||||
|
||||
public ElementDesc field(String name, String type, boolean nullable) {
|
||||
return field(name, qname(name), type, nullable);
|
||||
}
|
||||
|
||||
public ElementDesc field(String name, QName qname, String type, boolean nullable) {
|
||||
ElementDesc elemField = new ElementDesc();
|
||||
elemField.setFieldName(name);
|
||||
elemField.setXmlName(qname);
|
||||
elemField.setXmlType(oftype(type));
|
||||
elemField.setNillable(nullable);
|
||||
return elemField;
|
||||
}
|
||||
|
||||
public ParameterDesc param(String name, Class<?> klass, boolean nullable) {
|
||||
return param(qname(name), klass, nullable);
|
||||
}
|
||||
|
||||
public ParameterDesc param(QName name, Class<?> klass, boolean nullable) {
|
||||
String type = klass.getSimpleName();
|
||||
if (List.of("String").contains(type))
|
||||
type = type.toLowerCase();
|
||||
|
||||
ParameterDesc param = new ParameterDesc(name, ParameterDesc.IN, oftype(type), klass, false, false);
|
||||
param.setNillable(nullable);
|
||||
return param;
|
||||
}
|
||||
|
||||
public OperationDesc operation(String name, Class<?> returnType, QName returnName, Function<Descriptor, ParameterDesc[]> params) {
|
||||
OperationDesc oper = new OperationDesc();
|
||||
oper.setName(name);
|
||||
|
||||
if (params != null)
|
||||
for (ParameterDesc param: params.apply(this))
|
||||
oper.addParameter(param);
|
||||
|
||||
String type = returnType.getSimpleName();
|
||||
oper.setReturnType(oftype(type));
|
||||
oper.setReturnClass(returnType);
|
||||
oper.setReturnQName(returnName);
|
||||
oper.setStyle(Style.WRAPPED);
|
||||
oper.setUse(Use.LITERAL);
|
||||
|
||||
return oper;
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,50 @@
|
||||
package cokr.xit.interfaces.sntris;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
import java.util.stream.Collectors;
|
||||
|
||||
import org.springframework.core.io.ClassPathResource;
|
||||
|
||||
import cokr.xit.foundation.AbstractComponent;
|
||||
import cokr.xit.foundation.data.DataObject;
|
||||
import cokr.xit.foundation.data.JSON;
|
||||
|
||||
public class Sntris extends AbstractComponent {
|
||||
private static final Sntris sntris;
|
||||
|
||||
static {
|
||||
try {
|
||||
sntris = new JSON().parse(new ClassPathResource("intf-conf/xit-sntris.conf").getInputStream(), Sntris.class);
|
||||
} catch (Exception e) {
|
||||
throw runtimeException(e);
|
||||
}
|
||||
}
|
||||
|
||||
public static Sntris get() {
|
||||
return sntris;
|
||||
}
|
||||
|
||||
private String host;
|
||||
private Map<String, DataObject> apis;
|
||||
|
||||
|
||||
public void setHost(String host) {
|
||||
this.host = host;
|
||||
}
|
||||
|
||||
public DataObject api(String name) {
|
||||
return apis.get(name);
|
||||
}
|
||||
|
||||
public void setApis(List<DataObject> apis) {
|
||||
this.apis = apis.stream().collect(Collectors.toMap(api -> api.string("name"), api -> api));
|
||||
}
|
||||
|
||||
public String url(String name) {
|
||||
DataObject api = api(name);
|
||||
String uri = blankIfEmpty(api.string("uri"));
|
||||
|
||||
return uri.startsWith("http") ? uri : blankIfEmpty(host) + uri;
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,18 @@
|
||||
package cokr.xit.interfaces.sntris;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
import cokr.xit.foundation.AbstractComponent;
|
||||
|
||||
public class SntrisWSDTO extends AbstractComponent implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
protected int hashCode(Object... vals) {
|
||||
int result = 1;
|
||||
for (Object val: vals) {
|
||||
if (val == null) continue;
|
||||
result += val.hashCode();
|
||||
}
|
||||
return result;
|
||||
}
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
@ -1,76 +0,0 @@
|
||||
package cokr.xit.interfaces.sntris.buga;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
import javax.xml.namespace.QName;
|
||||
|
||||
import org.apache.axis.constants.Style;
|
||||
import org.apache.axis.constants.Use;
|
||||
import org.apache.axis.description.ElementDesc;
|
||||
import org.apache.axis.description.OperationDesc;
|
||||
import org.apache.axis.description.ParameterDesc;
|
||||
import org.apache.axis.description.TypeDesc;
|
||||
|
||||
import cokr.xit.foundation.AbstractComponent;
|
||||
|
||||
public class Descriptor extends AbstractComponent {
|
||||
public static QName ofName(String name) {
|
||||
return new QName("urn:BugaWebService", name);
|
||||
}
|
||||
|
||||
private static final List<String> types = List.of("string", "int", "long", "double");
|
||||
|
||||
public static QName ofType(String typeName) {
|
||||
String str = typeName.toLowerCase().replace("[]", "");
|
||||
|
||||
return types.contains(str) ?
|
||||
new QName("http://www.w3.org/2001/XMLSchema", str) :
|
||||
ofName(typeName);
|
||||
}
|
||||
|
||||
public static TypeDesc type(Class<?> klass, ElementDesc... elements) {
|
||||
TypeDesc typeDesc = new TypeDesc(klass, true);
|
||||
typeDesc.setXmlType(ofName(klass.getSimpleName()));
|
||||
|
||||
for (ElementDesc element: elements)
|
||||
typeDesc.addFieldDesc(element);
|
||||
|
||||
return typeDesc;
|
||||
}
|
||||
|
||||
public static ElementDesc field(String name, String type, boolean nullable) {
|
||||
ElementDesc elemField = new ElementDesc();
|
||||
elemField.setFieldName(name);
|
||||
elemField.setXmlName(ofName(name));
|
||||
elemField.setXmlType(ofType(type));
|
||||
elemField.setNillable(nullable);
|
||||
return elemField;
|
||||
}
|
||||
|
||||
public static ParameterDesc parameter(String name, Class<?> klass, boolean nullable) {
|
||||
String type = klass.getSimpleName();
|
||||
if (List.of("String").contains(type))
|
||||
type = type.toLowerCase();
|
||||
|
||||
ParameterDesc param = new ParameterDesc(ofName(name), ParameterDesc.IN, ofType(type), klass, false, false);
|
||||
param.setNillable(nullable);
|
||||
return param;
|
||||
}
|
||||
|
||||
public static OperationDesc operation(String name, Class<?> returnType, ParameterDesc... params) {
|
||||
OperationDesc oper = new OperationDesc();
|
||||
oper.setName(name);
|
||||
|
||||
for (ParameterDesc param: params)
|
||||
oper.addParameter(param);
|
||||
|
||||
String type = returnType.getSimpleName();
|
||||
oper.setReturnType(ofType(type));
|
||||
oper.setReturnClass(returnType);
|
||||
oper.setReturnQName(ofName(name + "Return"));
|
||||
oper.setStyle(Style.WRAPPED);
|
||||
oper.setUse(Use.LITERAL);
|
||||
|
||||
return oper;
|
||||
}
|
||||
}
|
||||
@ -1,27 +0,0 @@
|
||||
package cokr.xit.interfaces.sntris.dao;
|
||||
|
||||
import org.apache.ibatis.annotations.Select;
|
||||
import org.egovframe.rte.psl.dataaccess.mapper.Mapper;
|
||||
|
||||
import cokr.xit.foundation.component.AbstractMapper;
|
||||
import cokr.xit.foundation.data.DataObject;
|
||||
|
||||
@Mapper("sntrisMapper")
|
||||
public interface SntrisMapper extends AbstractMapper {
|
||||
@Select("""
|
||||
/* 사용자 시군구 조회(sntrisMapper.selectUserSgg) */
|
||||
SELECT B.*
|
||||
FROM TB_USER A, TB_SGG B
|
||||
WHERE USER_ID = #{userId}
|
||||
AND ORG_ID = SGG_CD
|
||||
AND NSTT_CD = INST_CD
|
||||
AND B.USE_YN = 'Y'""")
|
||||
DataObject selectUserSgg(String userId);
|
||||
|
||||
default boolean useSeoul(String userId) {
|
||||
DataObject sggInfo = selectUserSgg(ifEmpty(userId, currentUser()::getId));
|
||||
if (isEmpty(sggInfo))
|
||||
return false;
|
||||
return "6110000".equals(sggInfo.get("UP_INST_CD"));
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,14 @@
|
||||
package cokr.xit.interfaces.sntris.fileoffer;
|
||||
|
||||
import java.rmi.Remote;
|
||||
import java.rmi.RemoteException;
|
||||
|
||||
public interface SntrFileOfferWS extends Remote {
|
||||
Ye22SunapDTO[] webGwaseInfo004(Ye22InputDTO ye22InputDTO_1) throws RemoteException;
|
||||
|
||||
Ye22ChenapDTO[] webGwaseInfo005(Ye22InputDTO ye22InputDTO_1) throws RemoteException;
|
||||
|
||||
Ye22GwaseInfoDTO[] webGwaseInfo006(Ye22InputDTO ye22InputDTO_1) throws RemoteException;
|
||||
|
||||
Ye22NoticeInfoDTO[] webGwaseInfo007(Ye22InputDTO ye22InputDTO_1) throws RemoteException;
|
||||
}
|
||||
@ -0,0 +1,299 @@
|
||||
package cokr.xit.interfaces.sntris.fileoffer;
|
||||
|
||||
import java.net.URL;
|
||||
import java.rmi.RemoteException;
|
||||
import java.util.Enumeration;
|
||||
import java.util.List;
|
||||
import java.util.Vector;
|
||||
|
||||
import javax.xml.namespace.QName;
|
||||
|
||||
import org.apache.axis.AxisEngine;
|
||||
import org.apache.axis.AxisFault;
|
||||
import org.apache.axis.NoEndPointException;
|
||||
import org.apache.axis.client.Call;
|
||||
import org.apache.axis.client.Service;
|
||||
import org.apache.axis.client.Stub;
|
||||
import org.apache.axis.description.OperationDesc;
|
||||
import org.apache.axis.description.ParameterDesc;
|
||||
import org.apache.axis.encoding.DeserializerFactory;
|
||||
import org.apache.axis.encoding.SerializerFactory;
|
||||
import org.apache.axis.encoding.ser.BeanDeserializerFactory;
|
||||
import org.apache.axis.encoding.ser.BeanSerializerFactory;
|
||||
import org.apache.axis.soap.SOAPConstants;
|
||||
import org.apache.axis.utils.JavaUtils;
|
||||
|
||||
import cokr.xit.interfaces.sntris.Descriptor;
|
||||
import cokr.xit.interfaces.sntris.prenotice.SntrPreNoticeWebService;
|
||||
|
||||
public class SntrFileOfferWSBindingStub extends Stub implements SntrFileOfferWS {
|
||||
private Vector<QName> cachedSerQNames = new Vector<>();
|
||||
private Vector<Class<?>> cachedSerClasses = new Vector<>();
|
||||
private Vector<Object> cachedSerFactories = new Vector<>();
|
||||
private Vector<Object> cachedDeserFactories = new Vector<>();
|
||||
|
||||
static final OperationDesc [] _operations;
|
||||
|
||||
static {
|
||||
Descriptor descriptor = SntrFileOfferWebService.descriptor();
|
||||
_operations = new OperationDesc[] {
|
||||
descriptor.operation(
|
||||
"webGwaseInfo004", Ye22SunapDTO[].class, descriptor.qname("", "result"),
|
||||
desc -> new ParameterDesc[] {
|
||||
desc.param(desc.qname("", "Ye22InputDTO_1"), Ye22InputDTO.class, true)
|
||||
}
|
||||
),
|
||||
descriptor.operation(
|
||||
"webGwaseInfo005", Ye22ChenapDTO[].class, descriptor.qname("", "result"),
|
||||
desc -> new ParameterDesc[] {
|
||||
desc.param(desc.qname("", "Ye22InputDTO_1"), Ye22InputDTO.class, true)
|
||||
}
|
||||
),
|
||||
descriptor.operation(
|
||||
"webGwaseInfo006", Ye22GwaseInfoDTO[].class, descriptor.qname("", "result"),
|
||||
desc -> new ParameterDesc[] {
|
||||
desc.param(desc.qname("", "Ye22InputDTO_1"), Ye22InputDTO.class, true)
|
||||
}
|
||||
),
|
||||
descriptor.operation(
|
||||
"webGwaseInfo007", Ye22NoticeInfoDTO[].class, descriptor.qname("", "result"),
|
||||
desc -> new ParameterDesc[] {
|
||||
desc.param(desc.qname("", "Ye22InputDTO_1"), Ye22InputDTO.class, true)
|
||||
}
|
||||
)
|
||||
};
|
||||
}
|
||||
|
||||
public SntrFileOfferWSBindingStub() throws AxisFault {
|
||||
this(null);
|
||||
}
|
||||
|
||||
public SntrFileOfferWSBindingStub(URL endpointURL, Service service) throws AxisFault {
|
||||
this(service);
|
||||
super.cachedEndpoint = endpointURL;
|
||||
}
|
||||
|
||||
public SntrFileOfferWSBindingStub(Service service) throws AxisFault {
|
||||
if (service == null) {
|
||||
super.service = new Service();
|
||||
} else {
|
||||
super.service = service;
|
||||
}
|
||||
((Service)super.service).setTypeMappingVersion("1.2");
|
||||
|
||||
Descriptor descriptor = SntrPreNoticeWebService.descriptor();
|
||||
List.of(
|
||||
Ye22ChenapDTO.class, Ye22GwaseInfoDTO.class, Ye22InputDTO.class,
|
||||
Ye22NoticeInfoDTO.class, Ye22SunapDTO.class
|
||||
).forEach(klass -> {
|
||||
cachedSerQNames.add(descriptor.qname(klass.getSimpleName()));
|
||||
cachedSerClasses.add(klass);
|
||||
cachedSerFactories.add(BeanSerializerFactory.class);
|
||||
cachedDeserFactories.add(BeanDeserializerFactory.class);
|
||||
});
|
||||
}
|
||||
|
||||
protected Call createCall() throws RemoteException {
|
||||
try {
|
||||
Call _call = super._createCall();
|
||||
if (super.maintainSessionSet) {
|
||||
_call.setMaintainSession(super.maintainSession);
|
||||
}
|
||||
if (super.cachedUsername != null) {
|
||||
_call.setUsername(super.cachedUsername);
|
||||
}
|
||||
if (super.cachedPassword != null) {
|
||||
_call.setPassword(super.cachedPassword);
|
||||
}
|
||||
if (super.cachedEndpoint != null) {
|
||||
_call.setTargetEndpointAddress(super.cachedEndpoint);
|
||||
}
|
||||
if (super.cachedTimeout != null) {
|
||||
_call.setTimeout(super.cachedTimeout);
|
||||
}
|
||||
if (super.cachedPortName != null) {
|
||||
_call.setPortName(super.cachedPortName);
|
||||
}
|
||||
Enumeration keys = super.cachedProperties.keys();
|
||||
while (keys.hasMoreElements()) {
|
||||
String key = (String) keys.nextElement();
|
||||
_call.setProperty(key, super.cachedProperties.get(key));
|
||||
}
|
||||
// All the type mapping information is registered
|
||||
// when the first call is made.
|
||||
// The type mapping information is actually registered in
|
||||
// the TypeMappingRegistry of the service, which
|
||||
// is the reason why registration is only needed for the first call.
|
||||
synchronized (this) {
|
||||
if (firstCall()) {
|
||||
// must set encoding style before registering serializers
|
||||
_call.setEncodingStyle(null);
|
||||
for (int i = 0; i < cachedSerFactories.size(); ++i) {
|
||||
Class cls = cachedSerClasses.get(i);
|
||||
QName qName =
|
||||
cachedSerQNames.get(i);
|
||||
Object x = cachedSerFactories.get(i);
|
||||
if (x instanceof Class) {
|
||||
Class sf = (Class)
|
||||
cachedSerFactories.get(i);
|
||||
Class df = (Class)
|
||||
cachedDeserFactories.get(i);
|
||||
_call.registerTypeMapping(cls, qName, sf, df, false);
|
||||
}
|
||||
else if (x instanceof SerializerFactory) {
|
||||
SerializerFactory sf = (SerializerFactory)
|
||||
cachedSerFactories.get(i);
|
||||
DeserializerFactory df = (DeserializerFactory)
|
||||
cachedDeserFactories.get(i);
|
||||
_call.registerTypeMapping(cls, qName, sf, df, false);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
return _call;
|
||||
}
|
||||
catch (Throwable _t) {
|
||||
throw new AxisFault("Failure trying to get the Call object", _t);
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public Ye22SunapDTO[] webGwaseInfo004(Ye22InputDTO ye22InputDTO_1) throws RemoteException {
|
||||
if (super.cachedEndpoint == null) {
|
||||
throw new NoEndPointException();
|
||||
}
|
||||
Call _call = createCall();
|
||||
_call.setOperation(_operations[0]);
|
||||
_call.setUseSOAPAction(true);
|
||||
_call.setSOAPActionURI("");
|
||||
_call.setEncodingStyle(null);
|
||||
_call.setProperty(Call.SEND_TYPE_ATTR, Boolean.FALSE);
|
||||
_call.setProperty(AxisEngine.PROP_DOMULTIREFS, Boolean.FALSE);
|
||||
_call.setSOAPVersion(SOAPConstants.SOAP11_CONSTANTS);
|
||||
_call.setOperationName(new QName("urn:SntrFileOfferWebService", "webGwaseInfo004"));
|
||||
|
||||
setRequestHeaders(_call);
|
||||
setAttachments(_call);
|
||||
try {
|
||||
Object _resp = _call.invoke(new Object[] {ye22InputDTO_1});
|
||||
|
||||
if (_resp instanceof RemoteException) {
|
||||
throw (RemoteException)_resp;
|
||||
} else {
|
||||
extractAttachments(_call);
|
||||
try {
|
||||
return (Ye22SunapDTO[]) _resp;
|
||||
} catch (Exception _exception) {
|
||||
return (Ye22SunapDTO[]) JavaUtils.convert(_resp, Ye22SunapDTO[].class);
|
||||
}
|
||||
}
|
||||
} catch (AxisFault axisFaultException) {
|
||||
throw axisFaultException;
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public Ye22ChenapDTO[] webGwaseInfo005(Ye22InputDTO ye22InputDTO_1) throws RemoteException {
|
||||
if (super.cachedEndpoint == null) {
|
||||
throw new NoEndPointException();
|
||||
}
|
||||
Call _call = createCall();
|
||||
_call.setOperation(_operations[1]);
|
||||
_call.setUseSOAPAction(true);
|
||||
_call.setSOAPActionURI("");
|
||||
_call.setEncodingStyle(null);
|
||||
_call.setProperty(Call.SEND_TYPE_ATTR, Boolean.FALSE);
|
||||
_call.setProperty(AxisEngine.PROP_DOMULTIREFS, Boolean.FALSE);
|
||||
_call.setSOAPVersion(SOAPConstants.SOAP11_CONSTANTS);
|
||||
_call.setOperationName(new QName("urn:SntrFileOfferWebService", "webGwaseInfo005"));
|
||||
|
||||
setRequestHeaders(_call);
|
||||
setAttachments(_call);
|
||||
try {
|
||||
Object _resp = _call.invoke(new Object[] {ye22InputDTO_1});
|
||||
|
||||
if (_resp instanceof RemoteException) {
|
||||
throw (RemoteException)_resp;
|
||||
} else {
|
||||
extractAttachments(_call);
|
||||
try {
|
||||
return (Ye22ChenapDTO[]) _resp;
|
||||
} catch (Exception _exception) {
|
||||
return (Ye22ChenapDTO[]) JavaUtils.convert(_resp, Ye22ChenapDTO[].class);
|
||||
}
|
||||
}
|
||||
} catch (AxisFault axisFaultException) {
|
||||
throw axisFaultException;
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public Ye22GwaseInfoDTO[] webGwaseInfo006(Ye22InputDTO ye22InputDTO_1) throws RemoteException {
|
||||
if (super.cachedEndpoint == null) {
|
||||
throw new NoEndPointException();
|
||||
}
|
||||
Call _call = createCall();
|
||||
_call.setOperation(_operations[2]);
|
||||
_call.setUseSOAPAction(true);
|
||||
_call.setSOAPActionURI("");
|
||||
_call.setEncodingStyle(null);
|
||||
_call.setProperty(Call.SEND_TYPE_ATTR, Boolean.FALSE);
|
||||
_call.setProperty(AxisEngine.PROP_DOMULTIREFS, Boolean.FALSE);
|
||||
_call.setSOAPVersion(SOAPConstants.SOAP11_CONSTANTS);
|
||||
_call.setOperationName(new QName("urn:SntrFileOfferWebService", "webGwaseInfo006"));
|
||||
|
||||
setRequestHeaders(_call);
|
||||
setAttachments(_call);
|
||||
try {
|
||||
Object _resp = _call.invoke(new Object[] {ye22InputDTO_1});
|
||||
|
||||
if (_resp instanceof RemoteException) {
|
||||
throw (RemoteException)_resp;
|
||||
} else {
|
||||
extractAttachments(_call);
|
||||
try {
|
||||
return (Ye22GwaseInfoDTO[]) _resp;
|
||||
} catch (Exception _exception) {
|
||||
return (Ye22GwaseInfoDTO[]) JavaUtils.convert(_resp, Ye22GwaseInfoDTO[].class);
|
||||
}
|
||||
}
|
||||
} catch (AxisFault axisFaultException) {
|
||||
throw axisFaultException;
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public Ye22NoticeInfoDTO[] webGwaseInfo007(Ye22InputDTO ye22InputDTO_1) throws RemoteException {
|
||||
if (super.cachedEndpoint == null) {
|
||||
throw new NoEndPointException();
|
||||
}
|
||||
Call _call = createCall();
|
||||
_call.setOperation(_operations[3]);
|
||||
_call.setUseSOAPAction(true);
|
||||
_call.setSOAPActionURI("");
|
||||
_call.setEncodingStyle(null);
|
||||
_call.setProperty(Call.SEND_TYPE_ATTR, Boolean.FALSE);
|
||||
_call.setProperty(AxisEngine.PROP_DOMULTIREFS, Boolean.FALSE);
|
||||
_call.setSOAPVersion(SOAPConstants.SOAP11_CONSTANTS);
|
||||
_call.setOperationName(new QName("urn:SntrFileOfferWebService", "webGwaseInfo007"));
|
||||
|
||||
setRequestHeaders(_call);
|
||||
setAttachments(_call);
|
||||
try {
|
||||
Object _resp = _call.invoke(new Object[] {ye22InputDTO_1});
|
||||
|
||||
if (_resp instanceof RemoteException) {
|
||||
throw (RemoteException)_resp;
|
||||
} else {
|
||||
extractAttachments(_call);
|
||||
try {
|
||||
return (Ye22NoticeInfoDTO[]) _resp;
|
||||
} catch (Exception _exception) {
|
||||
return (Ye22NoticeInfoDTO[]) JavaUtils.convert(_resp, Ye22NoticeInfoDTO[].class);
|
||||
}
|
||||
}
|
||||
} catch (AxisFault axisFaultException) {
|
||||
throw axisFaultException;
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,68 @@
|
||||
package cokr.xit.interfaces.sntris.fileoffer;
|
||||
|
||||
import java.rmi.RemoteException;
|
||||
|
||||
import javax.xml.rpc.ServiceException;
|
||||
import javax.xml.rpc.Stub;
|
||||
|
||||
public class SntrFileOfferWSProxy implements SntrFileOfferWS {
|
||||
private String _endpoint = null;
|
||||
private SntrFileOfferWS sntrFileOfferWS = null;
|
||||
|
||||
public SntrFileOfferWSProxy() {
|
||||
_initSntrFileOfferWSProxy();
|
||||
}
|
||||
|
||||
public SntrFileOfferWSProxy(String endpoint) {
|
||||
_endpoint = endpoint;
|
||||
_initSntrFileOfferWSProxy();
|
||||
}
|
||||
|
||||
private void _initSntrFileOfferWSProxy() {
|
||||
try {
|
||||
sntrFileOfferWS = (new SntrFileOfferWebServiceLocator()).getSntrFileOfferWSPort();
|
||||
if (sntrFileOfferWS != null) {
|
||||
if (_endpoint != null)
|
||||
((Stub)sntrFileOfferWS)._setProperty("javax.xml.rpc.service.endpoint.address", _endpoint);
|
||||
else
|
||||
_endpoint = (String)((Stub)sntrFileOfferWS)._getProperty("javax.xml.rpc.service.endpoint.address");
|
||||
}
|
||||
} catch (ServiceException serviceException) {}
|
||||
}
|
||||
|
||||
public String getEndpoint() {
|
||||
return _endpoint;
|
||||
}
|
||||
|
||||
public void setEndpoint(String endpoint) {
|
||||
_endpoint = endpoint;
|
||||
if (sntrFileOfferWS != null)
|
||||
((Stub)sntrFileOfferWS)._setProperty("javax.xml.rpc.service.endpoint.address", _endpoint);
|
||||
}
|
||||
|
||||
public SntrFileOfferWS getSntrFileOfferWS() {
|
||||
if (sntrFileOfferWS == null)
|
||||
_initSntrFileOfferWSProxy();
|
||||
return sntrFileOfferWS;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Ye22SunapDTO[] webGwaseInfo004(Ye22InputDTO ye22InputDTO_1) throws RemoteException {
|
||||
return getSntrFileOfferWS().webGwaseInfo004(ye22InputDTO_1);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Ye22ChenapDTO[] webGwaseInfo005(Ye22InputDTO ye22InputDTO_1) throws RemoteException {
|
||||
return getSntrFileOfferWS().webGwaseInfo005(ye22InputDTO_1);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Ye22GwaseInfoDTO[] webGwaseInfo006(Ye22InputDTO ye22InputDTO_1) throws RemoteException {
|
||||
return getSntrFileOfferWS().webGwaseInfo006(ye22InputDTO_1);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Ye22NoticeInfoDTO[] webGwaseInfo007(Ye22InputDTO ye22InputDTO_1) throws RemoteException {
|
||||
return getSntrFileOfferWS().webGwaseInfo007(ye22InputDTO_1);
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,20 @@
|
||||
package cokr.xit.interfaces.sntris.fileoffer;
|
||||
|
||||
import java.net.URL;
|
||||
|
||||
import javax.xml.rpc.Service;
|
||||
import javax.xml.rpc.ServiceException;
|
||||
|
||||
import cokr.xit.interfaces.sntris.Descriptor;
|
||||
|
||||
public interface SntrFileOfferWebService extends Service {
|
||||
static Descriptor descriptor() {
|
||||
return new Descriptor("SntrFileOfferWebService");
|
||||
}
|
||||
|
||||
String getSntrFileOfferWSPortAddress();
|
||||
|
||||
SntrFileOfferWS getSntrFileOfferWSPort() throws ServiceException;
|
||||
|
||||
SntrFileOfferWS getSntrFileOfferWSPort(URL portAddress) throws ServiceException;
|
||||
}
|
||||
@ -0,0 +1,154 @@
|
||||
/**
|
||||
* SntrFileOfferWebServiceLocator.java
|
||||
*
|
||||
* This file was auto-generated from WSDL
|
||||
* by the Apache Axis 1.4 Apr 22, 2006 (06:55:48 PDT) WSDL2Java emitter.
|
||||
*/
|
||||
|
||||
package cokr.xit.interfaces.sntris.fileoffer;
|
||||
|
||||
import java.net.MalformedURLException;
|
||||
import java.net.URL;
|
||||
import java.rmi.Remote;
|
||||
import java.util.Iterator;
|
||||
import java.util.Set;
|
||||
|
||||
import javax.xml.namespace.QName;
|
||||
import javax.xml.rpc.ServiceException;
|
||||
|
||||
import org.apache.axis.AxisFault;
|
||||
import org.apache.axis.EngineConfiguration;
|
||||
import org.apache.axis.client.Service;
|
||||
import org.apache.axis.client.Stub;
|
||||
|
||||
import cokr.xit.interfaces.sntris.Sntris;
|
||||
|
||||
public class SntrFileOfferWebServiceLocator extends Service implements SntrFileOfferWebService {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
public SntrFileOfferWebServiceLocator() {}
|
||||
|
||||
|
||||
public SntrFileOfferWebServiceLocator(EngineConfiguration config) {
|
||||
super(config);
|
||||
}
|
||||
|
||||
public SntrFileOfferWebServiceLocator(String wsdlLoc, QName sName) throws ServiceException {
|
||||
super(wsdlLoc, sName);
|
||||
}
|
||||
|
||||
// Use to get a proxy class for SntrFileOfferWSPort
|
||||
private String SntrFileOfferWSPort_address = Sntris.get().url("fileoffer");
|
||||
|
||||
@Override
|
||||
public String getSntrFileOfferWSPortAddress() {
|
||||
return SntrFileOfferWSPort_address;
|
||||
}
|
||||
|
||||
// The WSDD service name defaults to the port name.
|
||||
private String SntrFileOfferWSPortWSDDServiceName = "SntrFileOfferWSPort";
|
||||
|
||||
public String getSntrFileOfferWSPortWSDDServiceName() {
|
||||
return SntrFileOfferWSPortWSDDServiceName;
|
||||
}
|
||||
|
||||
public void setSntrFileOfferWSPortWSDDServiceName(String name) {
|
||||
SntrFileOfferWSPortWSDDServiceName = name;
|
||||
}
|
||||
|
||||
@Override
|
||||
public SntrFileOfferWS getSntrFileOfferWSPort() throws ServiceException {
|
||||
URL endpoint;
|
||||
try {
|
||||
endpoint = new URL(SntrFileOfferWSPort_address);
|
||||
} catch (MalformedURLException e) {
|
||||
throw new ServiceException(e);
|
||||
}
|
||||
return getSntrFileOfferWSPort(endpoint);
|
||||
}
|
||||
|
||||
@Override
|
||||
public SntrFileOfferWS getSntrFileOfferWSPort(URL portAddress) throws ServiceException {
|
||||
try {
|
||||
SntrFileOfferWSBindingStub _stub = new SntrFileOfferWSBindingStub(portAddress, this);
|
||||
_stub.setPortName(getSntrFileOfferWSPortWSDDServiceName());
|
||||
return _stub;
|
||||
} catch (AxisFault e) {
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
public void setSntrFileOfferWSPortEndpointAddress(String address) {
|
||||
SntrFileOfferWSPort_address = address;
|
||||
}
|
||||
|
||||
/**
|
||||
* For the given interface, get the stub implementation.
|
||||
* If this service has no port for the given interface,
|
||||
* then ServiceException is thrown.
|
||||
*/
|
||||
@Override
|
||||
public Remote getPort(Class serviceEndpointInterface) throws ServiceException {
|
||||
try {
|
||||
if (SntrFileOfferWS.class.isAssignableFrom(serviceEndpointInterface)) {
|
||||
SntrFileOfferWSBindingStub _stub = new SntrFileOfferWSBindingStub(new URL(SntrFileOfferWSPort_address), this);
|
||||
_stub.setPortName(getSntrFileOfferWSPortWSDDServiceName());
|
||||
return _stub;
|
||||
}
|
||||
} catch (Throwable t) {
|
||||
throw new ServiceException(t);
|
||||
}
|
||||
throw new ServiceException("There is no stub implementation for the interface: " + (serviceEndpointInterface == null ? "null" : serviceEndpointInterface.getName()));
|
||||
}
|
||||
|
||||
/**
|
||||
* For the given interface, get the stub implementation.
|
||||
* If this service has no port for the given interface,
|
||||
* then ServiceException is thrown.
|
||||
*/
|
||||
@Override
|
||||
public Remote getPort(QName portName, Class serviceEndpointInterface) throws ServiceException {
|
||||
if (portName == null) {
|
||||
return getPort(serviceEndpointInterface);
|
||||
}
|
||||
String inputPortName = portName.getLocalPart();
|
||||
if ("SntrFileOfferWSPort".equals(inputPortName)) {
|
||||
return getSntrFileOfferWSPort();
|
||||
}
|
||||
else {
|
||||
Remote _stub = getPort(serviceEndpointInterface);
|
||||
((Stub) _stub).setPortName(portName);
|
||||
return _stub;
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public QName getServiceName() {
|
||||
return new QName("urn:SntrFileOfferWebService", "SntrFileOfferWebService");
|
||||
}
|
||||
|
||||
private Set<QName> ports = Set.of(SntrFileOfferWebService.descriptor().qname("SntrFileOfferWSPort"));
|
||||
|
||||
@Override
|
||||
public Iterator getPorts() {
|
||||
return ports.iterator();
|
||||
}
|
||||
|
||||
/**
|
||||
* Set the endpoint address for the specified port name.
|
||||
*/
|
||||
public void setEndpointAddress(String portName, String address) throws ServiceException {
|
||||
if ("SntrFileOfferWSPort".equals(portName)) {
|
||||
setSntrFileOfferWSPortEndpointAddress(address);
|
||||
} else { // Unknown Port Name
|
||||
throw new ServiceException(" Cannot set Endpoint Address for Unknown Port" + portName);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Set the endpoint address for the specified port name.
|
||||
*/
|
||||
public void setEndpointAddress(QName portName, String address) throws ServiceException {
|
||||
setEndpointAddress(portName.getLocalPart(), address);
|
||||
}
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,299 @@
|
||||
package cokr.xit.interfaces.sntris.fileoffer;
|
||||
|
||||
import javax.xml.namespace.QName;
|
||||
|
||||
import org.apache.axis.description.ElementDesc;
|
||||
import org.apache.axis.description.TypeDesc;
|
||||
import org.apache.axis.encoding.Deserializer;
|
||||
import org.apache.axis.encoding.Serializer;
|
||||
import org.apache.axis.encoding.ser.BeanDeserializer;
|
||||
import org.apache.axis.encoding.ser.BeanSerializer;
|
||||
|
||||
import cokr.xit.interfaces.sntris.SntrisWSDTO;
|
||||
|
||||
public class Ye22InputDTO extends SntrisWSDTO {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
private String buAk;
|
||||
private String buseoCd;
|
||||
private String mulNm;
|
||||
private String napId;
|
||||
private String napNm;
|
||||
private String semokCd;
|
||||
private String siguCd;
|
||||
private String systemGubun;
|
||||
private String taxGubun;
|
||||
private String taxNo;
|
||||
private String taxYm;
|
||||
|
||||
public Ye22InputDTO() {}
|
||||
|
||||
public Ye22InputDTO(
|
||||
String buAk,
|
||||
String buseoCd,
|
||||
String mulNm,
|
||||
String napId,
|
||||
String napNm,
|
||||
String semokCd,
|
||||
String siguCd,
|
||||
String systemGubun,
|
||||
String taxGubun,
|
||||
String taxNo,
|
||||
String taxYm
|
||||
) {
|
||||
this.buAk = buAk;
|
||||
this.buseoCd = buseoCd;
|
||||
this.mulNm = mulNm;
|
||||
this.napId = napId;
|
||||
this.napNm = napNm;
|
||||
this.semokCd = semokCd;
|
||||
this.siguCd = siguCd;
|
||||
this.systemGubun = systemGubun;
|
||||
this.taxGubun = taxGubun;
|
||||
this.taxNo = taxNo;
|
||||
this.taxYm = taxYm;
|
||||
}
|
||||
|
||||
/**Gets the buAk value for this Ye22InputDTO.
|
||||
* @return buAk
|
||||
*/
|
||||
public String getBuAk() {
|
||||
return buAk;
|
||||
}
|
||||
|
||||
/**Sets the buAk value for this Ye22InputDTO.
|
||||
* @param buAk
|
||||
*/
|
||||
public void setBuAk(String buAk) {
|
||||
this.buAk = buAk;
|
||||
}
|
||||
|
||||
/**Gets the buseoCd value for this Ye22InputDTO.
|
||||
* @return buseoCd
|
||||
*/
|
||||
public String getBuseoCd() {
|
||||
return buseoCd;
|
||||
}
|
||||
|
||||
/**Sets the buseoCd value for this Ye22InputDTO.
|
||||
* @param buseoCd
|
||||
*/
|
||||
public void setBuseoCd(String buseoCd) {
|
||||
this.buseoCd = buseoCd;
|
||||
}
|
||||
|
||||
/**Gets the mulNm value for this Ye22InputDTO.
|
||||
* @return mulNm
|
||||
*/
|
||||
public String getMulNm() {
|
||||
return mulNm;
|
||||
}
|
||||
|
||||
/**Sets the mulNm value for this Ye22InputDTO.
|
||||
* @param mulNm
|
||||
*/
|
||||
public void setMulNm(String mulNm) {
|
||||
this.mulNm = mulNm;
|
||||
}
|
||||
|
||||
/**Gets the napId value for this Ye22InputDTO.
|
||||
* @return napId
|
||||
*/
|
||||
public String getNapId() {
|
||||
return napId;
|
||||
}
|
||||
|
||||
/**Sets the napId value for this Ye22InputDTO.
|
||||
* @param napId
|
||||
*/
|
||||
public void setNapId(String napId) {
|
||||
this.napId = napId;
|
||||
}
|
||||
|
||||
/**Gets the napNm value for this Ye22InputDTO.
|
||||
* @return napNm
|
||||
*/
|
||||
public String getNapNm() {
|
||||
return napNm;
|
||||
}
|
||||
|
||||
/**Sets the napNm value for this Ye22InputDTO.
|
||||
* @param napNm
|
||||
*/
|
||||
public void setNapNm(String napNm) {
|
||||
this.napNm = napNm;
|
||||
}
|
||||
|
||||
/**Gets the semokCd value for this Ye22InputDTO.
|
||||
* @return semokCd
|
||||
*/
|
||||
public String getSemokCd() {
|
||||
return semokCd;
|
||||
}
|
||||
|
||||
/**Sets the semokCd value for this Ye22InputDTO.
|
||||
* @param semokCd
|
||||
*/
|
||||
public void setSemokCd(String semokCd) {
|
||||
this.semokCd = semokCd;
|
||||
}
|
||||
|
||||
/**Gets the siguCd value for this Ye22InputDTO.
|
||||
* @return siguCd
|
||||
*/
|
||||
public String getSiguCd() {
|
||||
return siguCd;
|
||||
}
|
||||
|
||||
/**Sets the siguCd value for this Ye22InputDTO.
|
||||
* @param siguCd
|
||||
*/
|
||||
public void setSiguCd(String siguCd) {
|
||||
this.siguCd = siguCd;
|
||||
}
|
||||
|
||||
/**Gets the systemGubun value for this Ye22InputDTO.
|
||||
* @return systemGubun
|
||||
*/
|
||||
public String getSystemGubun() {
|
||||
return systemGubun;
|
||||
}
|
||||
|
||||
/**Sets the systemGubun value for this Ye22InputDTO.
|
||||
* @param systemGubun
|
||||
*/
|
||||
public void setSystemGubun(String systemGubun) {
|
||||
this.systemGubun = systemGubun;
|
||||
}
|
||||
|
||||
/**Gets the taxGubun value for this Ye22InputDTO.
|
||||
* @return taxGubun
|
||||
*/
|
||||
public String getTaxGubun() {
|
||||
return taxGubun;
|
||||
}
|
||||
|
||||
/**Sets the taxGubun value for this Ye22InputDTO.
|
||||
* @param taxGubun
|
||||
*/
|
||||
public void setTaxGubun(String taxGubun) {
|
||||
this.taxGubun = taxGubun;
|
||||
}
|
||||
|
||||
/**Gets the taxNo value for this Ye22InputDTO.
|
||||
* @return taxNo
|
||||
*/
|
||||
public String getTaxNo() {
|
||||
return taxNo;
|
||||
}
|
||||
|
||||
/**Sets the taxNo value for this Ye22InputDTO.
|
||||
* @param taxNo
|
||||
*/
|
||||
public void setTaxNo(String taxNo) {
|
||||
this.taxNo = taxNo;
|
||||
}
|
||||
|
||||
/**Gets the taxYm value for this Ye22InputDTO.
|
||||
* @return taxYm
|
||||
*/
|
||||
public String getTaxYm() {
|
||||
return taxYm;
|
||||
}
|
||||
|
||||
/**Sets the taxYm value for this Ye22InputDTO.
|
||||
* @param taxYm
|
||||
*/
|
||||
public void setTaxYm(String taxYm) {
|
||||
this.taxYm = taxYm;
|
||||
}
|
||||
|
||||
private Object __equalsCalc = null;
|
||||
@Override
|
||||
public synchronized boolean equals(Object obj) {
|
||||
if (!(obj instanceof Ye22InputDTO)) return false;
|
||||
Ye22InputDTO other = (Ye22InputDTO) obj;
|
||||
if (this == obj) return true;
|
||||
if (__equalsCalc != null) {
|
||||
return (__equalsCalc == obj);
|
||||
}
|
||||
__equalsCalc = obj;
|
||||
boolean _equals =
|
||||
equals(this.buAk, other.getBuAk()) &&
|
||||
equals(this.buseoCd, other.getBuseoCd()) &&
|
||||
equals(this.mulNm, other.getMulNm()) &&
|
||||
equals(this.napId, other.getNapId()) &&
|
||||
equals(this.napNm, other.getNapNm()) &&
|
||||
equals(this.semokCd, other.getSemokCd()) &&
|
||||
equals(this.siguCd, other.getSiguCd()) &&
|
||||
equals(this.systemGubun, other.getSystemGubun()) &&
|
||||
equals(this.taxGubun, other.getTaxGubun()) &&
|
||||
equals(this.taxNo, other.getTaxNo()) &&
|
||||
equals(this.taxYm, other.getTaxYm());
|
||||
__equalsCalc = null;
|
||||
return _equals;
|
||||
}
|
||||
|
||||
private boolean __hashCodeCalc = false;
|
||||
@Override
|
||||
public synchronized int hashCode() {
|
||||
if (__hashCodeCalc) {
|
||||
return 0;
|
||||
}
|
||||
__hashCodeCalc = true;
|
||||
int _hashCode = hashCode(
|
||||
getBuAk(),
|
||||
getBuseoCd(),
|
||||
getMulNm(),
|
||||
getNapId(),
|
||||
getNapNm(),
|
||||
getSemokCd(),
|
||||
getSiguCd(),
|
||||
getSystemGubun(),
|
||||
getTaxGubun(),
|
||||
getTaxNo(),
|
||||
getTaxYm()
|
||||
);
|
||||
__hashCodeCalc = false;
|
||||
return _hashCode;
|
||||
}
|
||||
|
||||
// Type metadata
|
||||
private static TypeDesc typeDesc = SntrFileOfferWebService.descriptor().type(
|
||||
Ye22InputDTO.class,
|
||||
desc -> {
|
||||
String name = "";
|
||||
return new ElementDesc[] {
|
||||
desc.field(name = "buAk", desc.qname("", name), "string", true),
|
||||
desc.field(name = "buseoCd", desc.qname("", name), "string", true),
|
||||
desc.field(name = "mulNm", desc.qname("", name), "string", true),
|
||||
desc.field(name = "napId", desc.qname("", name), "string", true),
|
||||
desc.field(name = "napNm", desc.qname("", name), "string", true),
|
||||
desc.field(name = "semokCd", desc.qname("", name), "string", true),
|
||||
desc.field(name = "siguCd", desc.qname("", name), "string", true),
|
||||
desc.field(name = "systemGubun", desc.qname("", name), "string", true),
|
||||
desc.field(name = "taxGubun", desc.qname("", name), "string", true),
|
||||
desc.field(name = "taxNo", desc.qname("", name), "string", true),
|
||||
desc.field(name = "taxYm", desc.qname("", name), "string", true)
|
||||
};
|
||||
}
|
||||
);
|
||||
|
||||
/**Return type metadata object
|
||||
*/
|
||||
public static TypeDesc getTypeDesc() {
|
||||
return typeDesc;
|
||||
}
|
||||
|
||||
/**Get Custom Serializer
|
||||
*/
|
||||
public static Serializer getSerializer(String mechType, Class<?> _javaType, QName _xmlType) {
|
||||
return new BeanSerializer(_javaType, _xmlType, typeDesc);
|
||||
}
|
||||
|
||||
/**Get Custom Deserializer
|
||||
*/
|
||||
public static Deserializer getDeserializer(String mechType, Class<?> _javaType, QName _xmlType) {
|
||||
return new BeanDeserializer(_javaType, _xmlType, typeDesc);
|
||||
}
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,768 @@
|
||||
package cokr.xit.interfaces.sntris.prenotice;
|
||||
|
||||
import javax.xml.namespace.QName;
|
||||
|
||||
import org.apache.axis.description.ElementDesc;
|
||||
import org.apache.axis.description.TypeDesc;
|
||||
import org.apache.axis.encoding.Deserializer;
|
||||
import org.apache.axis.encoding.Serializer;
|
||||
import org.apache.axis.encoding.ser.BeanDeserializer;
|
||||
import org.apache.axis.encoding.ser.BeanSerializer;
|
||||
|
||||
import cokr.xit.interfaces.sntris.SntrisWSDTO;
|
||||
|
||||
public class Bu18WebPreNoticeDTO extends SntrisWSDTO {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/** 비고 */
|
||||
private String bigo;
|
||||
/** 자료키 */
|
||||
private String bookNo;
|
||||
/** 부서코드 */
|
||||
private String buseoCd;
|
||||
/** 처분내용 */
|
||||
private String disposalContent;
|
||||
/** 위반장소 */
|
||||
private String jukbalDtlAddr;
|
||||
/** 적발담당자 */
|
||||
private String jukbalMgrNm;
|
||||
/** 적발내용 */
|
||||
private String jukbalTarget;
|
||||
/** 적발담당자 전화번호 */
|
||||
private String jukbalTelNo;
|
||||
/** 적발년월 */
|
||||
private String jukbalYm;
|
||||
/** 위반일시 */
|
||||
private String jukbalYmdHs;
|
||||
/** 작업자 ID */
|
||||
private String lastWorkId;
|
||||
/** 작업자 이름 */
|
||||
private String lastWorkNm;
|
||||
/** 도로명 상세주소 */
|
||||
private String napDdtlAddr;
|
||||
/** 도로명 참고항목 */
|
||||
private String napDrefAddr;
|
||||
/** 지번 상세주소 */
|
||||
private String napDtlAddr;
|
||||
/** 도로명 우편주소 */
|
||||
private String napDzipAddr;
|
||||
/** 도로명 우편번호 */
|
||||
private String napDzipCd;
|
||||
/** 납세자 주민번호 */
|
||||
private String napId;
|
||||
/** 납세자 휴대폰 번호 */
|
||||
private String napMobilNo;
|
||||
/** 납세자 이름 */
|
||||
private String napNm;
|
||||
/** 납세자 전화번호 */
|
||||
private String napTelNo;
|
||||
/** 지번 우편주소 */
|
||||
private String napZipAddr;
|
||||
/** 지번 우편번호 */
|
||||
private String napZipCd;
|
||||
/** */
|
||||
private long preTaxAmt;
|
||||
/** 부과근거 */
|
||||
private String rawBasis;
|
||||
/** 세목코드 */
|
||||
private String semokCd;
|
||||
/** 사전통지일 */
|
||||
private String sendYmd;
|
||||
/** 시도코드 */
|
||||
private String sidoCd;
|
||||
/** 시구코드 */
|
||||
private String siguCd;
|
||||
/** 의견제출기한 */
|
||||
private String submitYmd;
|
||||
/** 시스템 구분 */
|
||||
private String sysGubun;
|
||||
/** 과세금액 */
|
||||
private long taxAmt;
|
||||
/** 작업일자 */
|
||||
private String workYmd;
|
||||
|
||||
public Bu18WebPreNoticeDTO() {}
|
||||
|
||||
public Bu18WebPreNoticeDTO(
|
||||
String bigo,
|
||||
String bookNo,
|
||||
String buseoCd,
|
||||
String disposalContent,
|
||||
String jukbalDtlAddr,
|
||||
String jukbalMgrNm,
|
||||
String jukbalTarget,
|
||||
String jukbalTelNo,
|
||||
String jukbalYm,
|
||||
String jukbalYmdHs,
|
||||
String lastWorkId,
|
||||
String lastWorkNm,
|
||||
String napDdtlAddr,
|
||||
String napDrefAddr,
|
||||
String napDtlAddr,
|
||||
String napDzipAddr,
|
||||
String napDzipCd,
|
||||
String napId,
|
||||
String napMobilNo,
|
||||
String napNm,
|
||||
String napTelNo,
|
||||
String napZipAddr,
|
||||
String napZipCd,
|
||||
long preTaxAmt,
|
||||
String rawBasis,
|
||||
String semokCd,
|
||||
String sendYmd,
|
||||
String sidoCd,
|
||||
String siguCd,
|
||||
String submitYmd,
|
||||
String sysGubun,
|
||||
long taxAmt,
|
||||
String workYmd
|
||||
) {
|
||||
this.bigo = bigo;
|
||||
this.bookNo = bookNo;
|
||||
this.buseoCd = buseoCd;
|
||||
this.disposalContent = disposalContent;
|
||||
this.jukbalDtlAddr = jukbalDtlAddr;
|
||||
this.jukbalMgrNm = jukbalMgrNm;
|
||||
this.jukbalTarget = jukbalTarget;
|
||||
this.jukbalTelNo = jukbalTelNo;
|
||||
this.jukbalYm = jukbalYm;
|
||||
this.jukbalYmdHs = jukbalYmdHs;
|
||||
this.lastWorkId = lastWorkId;
|
||||
this.lastWorkNm = lastWorkNm;
|
||||
this.napDdtlAddr = napDdtlAddr;
|
||||
this.napDrefAddr = napDrefAddr;
|
||||
this.napDtlAddr = napDtlAddr;
|
||||
this.napDzipAddr = napDzipAddr;
|
||||
this.napDzipCd = napDzipCd;
|
||||
this.napId = napId;
|
||||
this.napMobilNo = napMobilNo;
|
||||
this.napNm = napNm;
|
||||
this.napTelNo = napTelNo;
|
||||
this.napZipAddr = napZipAddr;
|
||||
this.napZipCd = napZipCd;
|
||||
this.preTaxAmt = preTaxAmt;
|
||||
this.rawBasis = rawBasis;
|
||||
this.semokCd = semokCd;
|
||||
this.sendYmd = sendYmd;
|
||||
this.sidoCd = sidoCd;
|
||||
this.siguCd = siguCd;
|
||||
this.submitYmd = submitYmd;
|
||||
this.sysGubun = sysGubun;
|
||||
this.taxAmt = taxAmt;
|
||||
this.workYmd = workYmd;
|
||||
}
|
||||
|
||||
/**Gets the bigo value for this Bu18WebPreNoticeDTO.
|
||||
* @return bigo
|
||||
*/
|
||||
public String getBigo() {
|
||||
return bigo;
|
||||
}
|
||||
|
||||
/**Sets the bigo value for this Bu18WebPreNoticeDTO.
|
||||
* @param bigo
|
||||
*/
|
||||
public void setBigo(String bigo) {
|
||||
this.bigo = bigo;
|
||||
}
|
||||
|
||||
/**Gets the bookNo value for this Bu18WebPreNoticeDTO.
|
||||
* @return bookNo
|
||||
*/
|
||||
public String getBookNo() {
|
||||
return bookNo;
|
||||
}
|
||||
|
||||
/**Sets the bookNo value for this Bu18WebPreNoticeDTO.
|
||||
* @param bookNo
|
||||
*/
|
||||
public void setBookNo(String bookNo) {
|
||||
this.bookNo = bookNo;
|
||||
}
|
||||
|
||||
/**Gets the buseoCd value for this Bu18WebPreNoticeDTO.
|
||||
* @return buseoCd
|
||||
*/
|
||||
public String getBuseoCd() {
|
||||
return buseoCd;
|
||||
}
|
||||
|
||||
/**Sets the buseoCd value for this Bu18WebPreNoticeDTO.
|
||||
* @param buseoCd
|
||||
*/
|
||||
public void setBuseoCd(String buseoCd) {
|
||||
this.buseoCd = buseoCd;
|
||||
}
|
||||
|
||||
/**Gets the disposalContent value for this Bu18WebPreNoticeDTO.
|
||||
* @return disposalContent
|
||||
*/
|
||||
public String getDisposalContent() {
|
||||
return disposalContent;
|
||||
}
|
||||
|
||||
/**Sets the disposalContent value for this Bu18WebPreNoticeDTO.
|
||||
* @param disposalContent
|
||||
*/
|
||||
public void setDisposalContent(String disposalContent) {
|
||||
this.disposalContent = disposalContent;
|
||||
}
|
||||
|
||||
/**Gets the jukbalDtlAddr value for this Bu18WebPreNoticeDTO.
|
||||
* @return jukbalDtlAddr
|
||||
*/
|
||||
public String getJukbalDtlAddr() {
|
||||
return jukbalDtlAddr;
|
||||
}
|
||||
|
||||
/**Sets the jukbalDtlAddr value for this Bu18WebPreNoticeDTO.
|
||||
* @param jukbalDtlAddr
|
||||
*/
|
||||
public void setJukbalDtlAddr(String jukbalDtlAddr) {
|
||||
this.jukbalDtlAddr = jukbalDtlAddr;
|
||||
}
|
||||
|
||||
/**Gets the jukbalMgrNm value for this Bu18WebPreNoticeDTO.
|
||||
* @return jukbalMgrNm
|
||||
*/
|
||||
public String getJukbalMgrNm() {
|
||||
return jukbalMgrNm;
|
||||
}
|
||||
|
||||
/**Sets the jukbalMgrNm value for this Bu18WebPreNoticeDTO.
|
||||
* @param jukbalMgrNm
|
||||
*/
|
||||
public void setJukbalMgrNm(String jukbalMgrNm) {
|
||||
this.jukbalMgrNm = jukbalMgrNm;
|
||||
}
|
||||
|
||||
/**Gets the jukbalTarget value for this Bu18WebPreNoticeDTO.
|
||||
* @return jukbalTarget
|
||||
*/
|
||||
public String getJukbalTarget() {
|
||||
return jukbalTarget;
|
||||
}
|
||||
|
||||
/**Sets the jukbalTarget value for this Bu18WebPreNoticeDTO.
|
||||
* @param jukbalTarget
|
||||
*/
|
||||
public void setJukbalTarget(String jukbalTarget) {
|
||||
this.jukbalTarget = jukbalTarget;
|
||||
}
|
||||
|
||||
/**Gets the jukbalTelNo value for this Bu18WebPreNoticeDTO.
|
||||
* @return jukbalTelNo
|
||||
*/
|
||||
public String getJukbalTelNo() {
|
||||
return jukbalTelNo;
|
||||
}
|
||||
|
||||
/**Sets the jukbalTelNo value for this Bu18WebPreNoticeDTO.
|
||||
* @param jukbalTelNo
|
||||
*/
|
||||
public void setJukbalTelNo(String jukbalTelNo) {
|
||||
this.jukbalTelNo = jukbalTelNo;
|
||||
}
|
||||
|
||||
/**Gets the jukbalYm value for this Bu18WebPreNoticeDTO.
|
||||
* @return jukbalYm
|
||||
*/
|
||||
public String getJukbalYm() {
|
||||
return jukbalYm;
|
||||
}
|
||||
|
||||
/**Sets the jukbalYm value for this Bu18WebPreNoticeDTO.
|
||||
* @param jukbalYm
|
||||
*/
|
||||
public void setJukbalYm(String jukbalYm) {
|
||||
this.jukbalYm = jukbalYm;
|
||||
}
|
||||
|
||||
/**Gets the jukbalYmdHs value for this Bu18WebPreNoticeDTO.
|
||||
* @return jukbalYmdHs
|
||||
*/
|
||||
public String getJukbalYmdHs() {
|
||||
return jukbalYmdHs;
|
||||
}
|
||||
|
||||
/**Sets the jukbalYmdHs value for this Bu18WebPreNoticeDTO.
|
||||
* @param jukbalYmdHs
|
||||
*/
|
||||
public void setJukbalYmdHs(String jukbalYmdHs) {
|
||||
this.jukbalYmdHs = jukbalYmdHs;
|
||||
}
|
||||
|
||||
/**Gets the lastWorkId value for this Bu18WebPreNoticeDTO.
|
||||
* @return lastWorkId
|
||||
*/
|
||||
public String getLastWorkId() {
|
||||
return lastWorkId;
|
||||
}
|
||||
|
||||
/**Sets the lastWorkId value for this Bu18WebPreNoticeDTO.
|
||||
* @param lastWorkId
|
||||
*/
|
||||
public void setLastWorkId(String lastWorkId) {
|
||||
this.lastWorkId = lastWorkId;
|
||||
}
|
||||
|
||||
/**Gets the lastWorkNm value for this Bu18WebPreNoticeDTO.
|
||||
* @return lastWorkNm
|
||||
*/
|
||||
public String getLastWorkNm() {
|
||||
return lastWorkNm;
|
||||
}
|
||||
|
||||
/**Sets the lastWorkNm value for this Bu18WebPreNoticeDTO.
|
||||
* @param lastWorkNm
|
||||
*/
|
||||
public void setLastWorkNm(String lastWorkNm) {
|
||||
this.lastWorkNm = lastWorkNm;
|
||||
}
|
||||
|
||||
/**Gets the napDdtlAddr value for this Bu18WebPreNoticeDTO.
|
||||
* @return napDdtlAddr
|
||||
*/
|
||||
public String getNapDdtlAddr() {
|
||||
return napDdtlAddr;
|
||||
}
|
||||
|
||||
/**Sets the napDdtlAddr value for this Bu18WebPreNoticeDTO.
|
||||
* @param napDdtlAddr
|
||||
*/
|
||||
public void setNapDdtlAddr(String napDdtlAddr) {
|
||||
this.napDdtlAddr = napDdtlAddr;
|
||||
}
|
||||
|
||||
/**Gets the napDrefAddr value for this Bu18WebPreNoticeDTO.
|
||||
* @return napDrefAddr
|
||||
*/
|
||||
public String getNapDrefAddr() {
|
||||
return napDrefAddr;
|
||||
}
|
||||
|
||||
/**Sets the napDrefAddr value for this Bu18WebPreNoticeDTO.
|
||||
*
|
||||
* @param napDrefAddr
|
||||
*/
|
||||
public void setNapDrefAddr(String napDrefAddr) {
|
||||
this.napDrefAddr = napDrefAddr;
|
||||
}
|
||||
|
||||
/**Gets the napDtlAddr value for this Bu18WebPreNoticeDTO.
|
||||
* @return napDtlAddr
|
||||
*/
|
||||
public String getNapDtlAddr() {
|
||||
return napDtlAddr;
|
||||
}
|
||||
|
||||
/**Sets the napDtlAddr value for this Bu18WebPreNoticeDTO.
|
||||
* @param napDtlAddr
|
||||
*/
|
||||
public void setNapDtlAddr(String napDtlAddr) {
|
||||
this.napDtlAddr = napDtlAddr;
|
||||
}
|
||||
|
||||
/**Gets the napDzipAddr value for this Bu18WebPreNoticeDTO.
|
||||
* @return napDzipAddr
|
||||
*/
|
||||
public String getNapDzipAddr() {
|
||||
return napDzipAddr;
|
||||
}
|
||||
|
||||
/**Sets the napDzipAddr value for this Bu18WebPreNoticeDTO.
|
||||
* @param napDzipAddr
|
||||
*/
|
||||
public void setNapDzipAddr(String napDzipAddr) {
|
||||
this.napDzipAddr = napDzipAddr;
|
||||
}
|
||||
|
||||
/**Gets the napDzipCd value for this Bu18WebPreNoticeDTO.
|
||||
* @return napDzipCd
|
||||
*/
|
||||
public String getNapDzipCd() {
|
||||
return napDzipCd;
|
||||
}
|
||||
|
||||
/**Sets the napDzipCd value for this Bu18WebPreNoticeDTO.
|
||||
* @param napDzipCd
|
||||
*/
|
||||
public void setNapDzipCd(String napDzipCd) {
|
||||
this.napDzipCd = napDzipCd;
|
||||
}
|
||||
|
||||
/**Gets the napId value for this Bu18WebPreNoticeDTO.
|
||||
* @return napId
|
||||
*/
|
||||
public String getNapId() {
|
||||
return napId;
|
||||
}
|
||||
|
||||
/**Sets the napId value for this Bu18WebPreNoticeDTO.
|
||||
* @param napId
|
||||
*/
|
||||
public void setNapId(String napId) {
|
||||
this.napId = napId;
|
||||
}
|
||||
|
||||
/**Gets the napMobilNo value for this Bu18WebPreNoticeDTO.
|
||||
* @return napMobilNo
|
||||
*/
|
||||
public String getNapMobilNo() {
|
||||
return napMobilNo;
|
||||
}
|
||||
|
||||
/**Sets the napMobilNo value for this Bu18WebPreNoticeDTO.
|
||||
* @param napMobilNo
|
||||
*/
|
||||
public void setNapMobilNo(String napMobilNo) {
|
||||
this.napMobilNo = napMobilNo;
|
||||
}
|
||||
|
||||
/**Gets the napNm value for this Bu18WebPreNoticeDTO.
|
||||
* @return napNm
|
||||
*/
|
||||
public String getNapNm() {
|
||||
return napNm;
|
||||
}
|
||||
|
||||
/**Sets the napNm value for this Bu18WebPreNoticeDTO.
|
||||
* @param napNm
|
||||
*/
|
||||
public void setNapNm(String napNm) {
|
||||
this.napNm = napNm;
|
||||
}
|
||||
|
||||
/**Gets the napTelNo value for this Bu18WebPreNoticeDTO.
|
||||
* @return napTelNo
|
||||
*/
|
||||
public String getNapTelNo() {
|
||||
return napTelNo;
|
||||
}
|
||||
|
||||
/**Sets the napTelNo value for this Bu18WebPreNoticeDTO.
|
||||
* @param napTelNo
|
||||
*/
|
||||
public void setNapTelNo(String napTelNo) {
|
||||
this.napTelNo = napTelNo;
|
||||
}
|
||||
|
||||
/**Gets the napZipAddr value for this Bu18WebPreNoticeDTO.
|
||||
* @return napZipAddr
|
||||
*/
|
||||
public String getNapZipAddr() {
|
||||
return napZipAddr;
|
||||
}
|
||||
|
||||
/**Sets the napZipAddr value for this Bu18WebPreNoticeDTO.
|
||||
* @param napZipAddr
|
||||
*/
|
||||
public void setNapZipAddr(String napZipAddr) {
|
||||
this.napZipAddr = napZipAddr;
|
||||
}
|
||||
|
||||
/**Gets the napZipCd value for this Bu18WebPreNoticeDTO.
|
||||
* @return napZipCd
|
||||
*/
|
||||
public String getNapZipCd() {
|
||||
return napZipCd;
|
||||
}
|
||||
|
||||
/**Sets the napZipCd value for this Bu18WebPreNoticeDTO.
|
||||
* @param napZipCd
|
||||
*/
|
||||
public void setNapZipCd(String napZipCd) {
|
||||
this.napZipCd = napZipCd;
|
||||
}
|
||||
|
||||
/**Gets the preTaxAmt value for this Bu18WebPreNoticeDTO.
|
||||
* @return preTaxAmt
|
||||
*/
|
||||
public long getPreTaxAmt() {
|
||||
return preTaxAmt;
|
||||
}
|
||||
|
||||
/**Sets the preTaxAmt value for this Bu18WebPreNoticeDTO.
|
||||
* @param preTaxAmt
|
||||
*/
|
||||
public void setPreTaxAmt(long preTaxAmt) {
|
||||
this.preTaxAmt = preTaxAmt;
|
||||
}
|
||||
|
||||
/**Gets the rawBasis value for this Bu18WebPreNoticeDTO.
|
||||
* @return rawBasis
|
||||
*/
|
||||
public String getRawBasis() {
|
||||
return rawBasis;
|
||||
}
|
||||
|
||||
/**Sets the rawBasis value for this Bu18WebPreNoticeDTO.
|
||||
* @param rawBasis
|
||||
*/
|
||||
public void setRawBasis(String rawBasis) {
|
||||
this.rawBasis = rawBasis;
|
||||
}
|
||||
|
||||
/**Gets the semokCd value for this Bu18WebPreNoticeDTO.
|
||||
* @return semokCd
|
||||
*/
|
||||
public String getSemokCd() {
|
||||
return semokCd;
|
||||
}
|
||||
|
||||
/**Sets the semokCd value for this Bu18WebPreNoticeDTO.
|
||||
* @param semokCd
|
||||
*/
|
||||
public void setSemokCd(String semokCd) {
|
||||
this.semokCd = semokCd;
|
||||
}
|
||||
|
||||
/**Gets the sendYmd value for this Bu18WebPreNoticeDTO.
|
||||
* @return sendYmd
|
||||
*/
|
||||
public String getSendYmd() {
|
||||
return sendYmd;
|
||||
}
|
||||
|
||||
/**Sets the sendYmd value for this Bu18WebPreNoticeDTO.
|
||||
* @param sendYmd
|
||||
*/
|
||||
public void setSendYmd(String sendYmd) {
|
||||
this.sendYmd = sendYmd;
|
||||
}
|
||||
|
||||
/**Gets the sidoCd value for this Bu18WebPreNoticeDTO.
|
||||
* @return sidoCd
|
||||
*/
|
||||
public String getSidoCd() {
|
||||
return sidoCd;
|
||||
}
|
||||
|
||||
/**Sets the sidoCd value for this Bu18WebPreNoticeDTO.
|
||||
* @param sidoCd
|
||||
*/
|
||||
public void setSidoCd(String sidoCd) {
|
||||
this.sidoCd = sidoCd;
|
||||
}
|
||||
|
||||
/**Gets the siguCd value for this Bu18WebPreNoticeDTO.
|
||||
* @return siguCd
|
||||
*/
|
||||
public String getSiguCd() {
|
||||
return siguCd;
|
||||
}
|
||||
|
||||
/**Sets the siguCd value for this Bu18WebPreNoticeDTO.
|
||||
* @param siguCd
|
||||
*/
|
||||
public void setSiguCd(String siguCd) {
|
||||
this.siguCd = siguCd;
|
||||
}
|
||||
|
||||
/**Gets the submitYmd value for this Bu18WebPreNoticeDTO.
|
||||
* @return submitYmd
|
||||
*/
|
||||
public String getSubmitYmd() {
|
||||
return submitYmd;
|
||||
}
|
||||
|
||||
/**Sets the submitYmd value for this Bu18WebPreNoticeDTO.
|
||||
* @param submitYmd
|
||||
*/
|
||||
public void setSubmitYmd(String submitYmd) {
|
||||
this.submitYmd = submitYmd;
|
||||
}
|
||||
|
||||
/**Gets the sysGubun value for this Bu18WebPreNoticeDTO.
|
||||
* @return sysGubun
|
||||
*/
|
||||
public String getSysGubun() {
|
||||
return sysGubun;
|
||||
}
|
||||
|
||||
/**Sets the sysGubun value for this Bu18WebPreNoticeDTO.
|
||||
* @param sysGubun
|
||||
*/
|
||||
public void setSysGubun(String sysGubun) {
|
||||
this.sysGubun = sysGubun;
|
||||
}
|
||||
|
||||
/**Gets the taxAmt value for this Bu18WebPreNoticeDTO.
|
||||
* @return taxAmt
|
||||
*/
|
||||
public long getTaxAmt() {
|
||||
return taxAmt;
|
||||
}
|
||||
|
||||
/**Sets the taxAmt value for this Bu18WebPreNoticeDTO.
|
||||
* @param taxAmt
|
||||
*/
|
||||
public void setTaxAmt(long taxAmt) {
|
||||
this.taxAmt = taxAmt;
|
||||
}
|
||||
|
||||
/**Gets the workYmd value for this Bu18WebPreNoticeDTO.
|
||||
* @return workYmd
|
||||
*/
|
||||
public String getWorkYmd() {
|
||||
return workYmd;
|
||||
}
|
||||
|
||||
/**Sets the workYmd value for this Bu18WebPreNoticeDTO.
|
||||
* @param workYmd
|
||||
*/
|
||||
public void setWorkYmd(String workYmd) {
|
||||
this.workYmd = workYmd;
|
||||
}
|
||||
|
||||
private Object __equalsCalc = null;
|
||||
|
||||
@Override
|
||||
public synchronized boolean equals(Object obj) {
|
||||
if (!(obj instanceof Bu18WebPreNoticeDTO)) return false;
|
||||
Bu18WebPreNoticeDTO other = (Bu18WebPreNoticeDTO) obj;
|
||||
if (this == obj) return true;
|
||||
if (__equalsCalc != null) {
|
||||
return (__equalsCalc == obj);
|
||||
}
|
||||
__equalsCalc = obj;
|
||||
boolean _equals =
|
||||
equals(this.bigo, other.getBigo()) &&
|
||||
equals(this.bookNo, other.getBookNo()) &&
|
||||
equals(this.buseoCd, other.getBuseoCd()) &&
|
||||
equals(this.disposalContent, other.getDisposalContent()) &&
|
||||
equals(this.jukbalDtlAddr, other.getJukbalDtlAddr()) &&
|
||||
equals(this.jukbalMgrNm, other.getJukbalMgrNm()) &&
|
||||
equals(this.jukbalTarget, other.getJukbalTarget()) &&
|
||||
equals(this.jukbalTelNo, other.getJukbalTelNo()) &&
|
||||
equals(this.jukbalYm, other.getJukbalYm()) &&
|
||||
equals(this.jukbalYmdHs, other.getJukbalYmdHs()) &&
|
||||
equals(this.lastWorkId, other.getLastWorkId()) &&
|
||||
equals(this.lastWorkNm, other.getLastWorkNm()) &&
|
||||
equals(this.napDdtlAddr, other.getNapDdtlAddr()) &&
|
||||
equals(this.napDrefAddr, other.getNapDrefAddr()) &&
|
||||
equals(this.napDtlAddr, other.getNapDtlAddr()) &&
|
||||
equals(this.napDzipAddr, other.getNapDzipAddr()) &&
|
||||
equals(this.napDzipCd, other.getNapDzipCd()) &&
|
||||
equals(this.napId, other.getNapId()) &&
|
||||
equals(this.napMobilNo, other.getNapMobilNo()) &&
|
||||
equals(this.napNm, other.getNapNm()) &&
|
||||
equals(this.napTelNo, other.getNapTelNo()) &&
|
||||
equals(this.napZipAddr, other.getNapZipAddr()) &&
|
||||
equals(this.napZipCd, other.getNapZipCd()) &&
|
||||
this.preTaxAmt == other.getPreTaxAmt() &&
|
||||
equals(this.rawBasis, other.getRawBasis()) &&
|
||||
equals(this.semokCd, other.getSemokCd()) &&
|
||||
equals(this.sendYmd, other.getSendYmd()) &&
|
||||
equals(this.sidoCd, other.getSidoCd()) &&
|
||||
equals(this.siguCd, other.getSiguCd()) &&
|
||||
equals(this.submitYmd, other.getSubmitYmd()) &&
|
||||
equals(this.sysGubun, other.getSysGubun()) &&
|
||||
this.taxAmt == other.getTaxAmt() &&
|
||||
equals(this.workYmd, other.getWorkYmd());
|
||||
__equalsCalc = null;
|
||||
return _equals;
|
||||
}
|
||||
|
||||
private boolean __hashCodeCalc = false;
|
||||
@Override
|
||||
public synchronized int hashCode() {
|
||||
if (__hashCodeCalc) {
|
||||
return 0;
|
||||
}
|
||||
__hashCodeCalc = true;
|
||||
int _hashCode = hashCode(
|
||||
getBigo(),
|
||||
getBookNo(),
|
||||
getBuseoCd(),
|
||||
getDisposalContent(),
|
||||
getJukbalDtlAddr(),
|
||||
getJukbalMgrNm(),
|
||||
getJukbalTarget(),
|
||||
getJukbalTelNo(),
|
||||
getJukbalYm(),
|
||||
getJukbalYmdHs(),
|
||||
getLastWorkId(),
|
||||
getLastWorkNm(),
|
||||
getNapDdtlAddr(),
|
||||
getNapDrefAddr(),
|
||||
getNapDtlAddr(),
|
||||
getNapDzipAddr(),
|
||||
getNapDzipCd(),
|
||||
getNapId(),
|
||||
getNapMobilNo(),
|
||||
getNapNm(),
|
||||
getNapTelNo(),
|
||||
getNapZipAddr(),
|
||||
getNapZipCd(),
|
||||
Long.valueOf(getPreTaxAmt()),
|
||||
getRawBasis(),
|
||||
getSemokCd(),
|
||||
getSendYmd(),
|
||||
getSidoCd(),
|
||||
getSiguCd(),
|
||||
getSubmitYmd(),
|
||||
getSysGubun(),
|
||||
Long.valueOf(getTaxAmt()),
|
||||
getWorkYmd()
|
||||
);
|
||||
__hashCodeCalc = false;
|
||||
return _hashCode;
|
||||
}
|
||||
|
||||
// Type metadata
|
||||
private static TypeDesc typeDesc = SntrPreNoticeWebService.descriptor().type(
|
||||
Bu18WebPreNoticeDTO.class,
|
||||
desc -> {
|
||||
String name = "";
|
||||
return new ElementDesc[] {
|
||||
desc.field(name = "bigo", desc.qname("", name), "string", true),
|
||||
desc.field(name = "bookNo", desc.qname("", name), "string", true),
|
||||
desc.field(name = "buseoCd", desc.qname("", name), "string", true),
|
||||
desc.field(name = "disposalContent", desc.qname("", name), "string", true),
|
||||
desc.field(name = "jukbalDtlAddr", desc.qname("", name), "string", true),
|
||||
desc.field(name = "jukbalMgrNm", desc.qname("", name), "string", true),
|
||||
desc.field(name = "jukbalTarget", desc.qname("", name), "string", true),
|
||||
desc.field(name = "jukbalTelNo", desc.qname("", name), "string", true),
|
||||
desc.field(name = "jukbalYm", desc.qname("", name), "string", true),
|
||||
desc.field(name = "jukbalYmdHs", desc.qname("", name), "string", true),
|
||||
desc.field(name = "lastWorkId", desc.qname("", name), "string", true),
|
||||
desc.field(name = "lastWorkNm", desc.qname("", name), "string", true),
|
||||
desc.field(name = "napDdtlAddr", desc.qname("", name), "string", true),
|
||||
desc.field(name = "napDrefAddr", desc.qname("", name), "string", true),
|
||||
desc.field(name = "napDtlAddr", desc.qname("", name), "string", true),
|
||||
desc.field(name = "napDzipAddr", desc.qname("", name), "string", true),
|
||||
desc.field(name = "napDzipCd", desc.qname("", name), "string", true),
|
||||
desc.field(name = "napId", desc.qname("", name), "string", true),
|
||||
desc.field(name = "napMobilNo", desc.qname("", name), "string", true),
|
||||
desc.field(name = "napNm", desc.qname("", name), "string", true),
|
||||
desc.field(name = "napTelNo", desc.qname("", name), "string", true),
|
||||
desc.field(name = "napZipAddr", desc.qname("", name), "string", true),
|
||||
desc.field(name = "napZipCd", desc.qname("", name), "string", true),
|
||||
desc.field(name = "preTaxAmt", desc.qname("", name), "long", false),
|
||||
desc.field(name = "rawBasis", desc.qname("", name), "string", true),
|
||||
desc.field(name = "semokCd", desc.qname("", name), "string", true),
|
||||
desc.field(name = "sendYmd", desc.qname("", name), "string", true),
|
||||
desc.field(name = "sidoCd", desc.qname("", name), "string", true),
|
||||
desc.field(name = "siguCd", desc.qname("", name), "string", true),
|
||||
desc.field(name = "submitYmd", desc.qname("", name), "string", true),
|
||||
desc.field(name = "sysGubun", desc.qname("", name), "string", true),
|
||||
desc.field(name = "taxAmt", desc.qname("", name), "long", false),
|
||||
desc.field(name = "workYmd", desc.qname("", name), "string", true)
|
||||
};
|
||||
}
|
||||
);
|
||||
|
||||
public static org.apache.axis.description.TypeDesc getTypeDesc() {
|
||||
return typeDesc;
|
||||
}
|
||||
|
||||
public static Serializer getSerializer(String mechType, Class<?> _javaType, QName _xmlType) {
|
||||
return new BeanSerializer(_javaType, _xmlType, typeDesc);
|
||||
}
|
||||
|
||||
public static Deserializer getDeserializer(String mechType, Class<?> _javaType, QName _xmlType) {
|
||||
return new BeanDeserializer(_javaType, _xmlType, typeDesc);
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,501 @@
|
||||
package cokr.xit.interfaces.sntris.prenotice;
|
||||
|
||||
import javax.xml.namespace.QName;
|
||||
|
||||
import org.apache.axis.description.ElementDesc;
|
||||
import org.apache.axis.encoding.Deserializer;
|
||||
import org.apache.axis.encoding.Serializer;
|
||||
import org.apache.axis.encoding.ser.BeanDeserializer;
|
||||
import org.apache.axis.encoding.ser.BeanSerializer;
|
||||
|
||||
import cokr.xit.interfaces.sntris.SntrisWSDTO;
|
||||
|
||||
public class Bu18WebReturnInfoDTO extends SntrisWSDTO {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
private String CAccountNo;
|
||||
private String FAccountNo;
|
||||
private String HAccountNo;
|
||||
private String IAccountNo;
|
||||
private String KAccountNo;
|
||||
private String NAccountNo;
|
||||
private String OAccountNo;
|
||||
private String PAccountNo;
|
||||
private String QAccountNo;
|
||||
private String SAccountNo;
|
||||
private String WAccountNo;
|
||||
private String buAfk;
|
||||
private String enapbuNo;
|
||||
private String etcColmn1;
|
||||
private String etcColmn2;
|
||||
private String etcColmn3;
|
||||
private String etcColmn4;
|
||||
private String etcColmn5;
|
||||
private String noticeAk;
|
||||
private String returnCode;
|
||||
private String returnMsg;
|
||||
|
||||
public Bu18WebReturnInfoDTO() {}
|
||||
|
||||
public Bu18WebReturnInfoDTO(
|
||||
String CAccountNo,
|
||||
String FAccountNo,
|
||||
String HAccountNo,
|
||||
String IAccountNo,
|
||||
String KAccountNo,
|
||||
String NAccountNo,
|
||||
String OAccountNo,
|
||||
String PAccountNo,
|
||||
String QAccountNo,
|
||||
String SAccountNo,
|
||||
String WAccountNo,
|
||||
String buAfk,
|
||||
String enapbuNo,
|
||||
String etcColmn1,
|
||||
String etcColmn2,
|
||||
String etcColmn3,
|
||||
String etcColmn4,
|
||||
String etcColmn5,
|
||||
String noticeAk,
|
||||
String returnCode,
|
||||
String returnMsg
|
||||
) {
|
||||
this.CAccountNo = CAccountNo;
|
||||
this.FAccountNo = FAccountNo;
|
||||
this.HAccountNo = HAccountNo;
|
||||
this.IAccountNo = IAccountNo;
|
||||
this.KAccountNo = KAccountNo;
|
||||
this.NAccountNo = NAccountNo;
|
||||
this.OAccountNo = OAccountNo;
|
||||
this.PAccountNo = PAccountNo;
|
||||
this.QAccountNo = QAccountNo;
|
||||
this.SAccountNo = SAccountNo;
|
||||
this.WAccountNo = WAccountNo;
|
||||
this.buAfk = buAfk;
|
||||
this.enapbuNo = enapbuNo;
|
||||
this.etcColmn1 = etcColmn1;
|
||||
this.etcColmn2 = etcColmn2;
|
||||
this.etcColmn3 = etcColmn3;
|
||||
this.etcColmn4 = etcColmn4;
|
||||
this.etcColmn5 = etcColmn5;
|
||||
this.noticeAk = noticeAk;
|
||||
this.returnCode = returnCode;
|
||||
this.returnMsg = returnMsg;
|
||||
}
|
||||
|
||||
/**Gets the CAccountNo value for this Bu18WebReturnInfoDTO.
|
||||
* @return CAccountNo
|
||||
*/
|
||||
public String getCAccountNo() {
|
||||
return CAccountNo;
|
||||
}
|
||||
|
||||
/**Sets the CAccountNo value for this Bu18WebReturnInfoDTO.
|
||||
* @param CAccountNo
|
||||
*/
|
||||
public void setCAccountNo(String CAccountNo) {
|
||||
this.CAccountNo = CAccountNo;
|
||||
}
|
||||
|
||||
/**Gets the FAccountNo value for this Bu18WebReturnInfoDTO.
|
||||
* @return FAccountNo
|
||||
*/
|
||||
public String getFAccountNo() {
|
||||
return FAccountNo;
|
||||
}
|
||||
|
||||
/**Sets the FAccountNo value for this Bu18WebReturnInfoDTO.
|
||||
* @param FAccountNo
|
||||
*/
|
||||
public void setFAccountNo(String FAccountNo) {
|
||||
this.FAccountNo = FAccountNo;
|
||||
}
|
||||
|
||||
/**Gets the HAccountNo value for this Bu18WebReturnInfoDTO.
|
||||
* @return HAccountNo
|
||||
*/
|
||||
public String getHAccountNo() {
|
||||
return HAccountNo;
|
||||
}
|
||||
|
||||
/**Sets the HAccountNo value for this Bu18WebReturnInfoDTO.
|
||||
* @param HAccountNo
|
||||
*/
|
||||
public void setHAccountNo(String HAccountNo) {
|
||||
this.HAccountNo = HAccountNo;
|
||||
}
|
||||
|
||||
/**Gets the IAccountNo value for this Bu18WebReturnInfoDTO.
|
||||
* @return IAccountNo
|
||||
*/
|
||||
public String getIAccountNo() {
|
||||
return IAccountNo;
|
||||
}
|
||||
|
||||
/**Sets the IAccountNo value for this Bu18WebReturnInfoDTO.
|
||||
* @param IAccountNo
|
||||
*/
|
||||
public void setIAccountNo(String IAccountNo) {
|
||||
this.IAccountNo = IAccountNo;
|
||||
}
|
||||
|
||||
/**Gets the KAccountNo value for this Bu18WebReturnInfoDTO.
|
||||
* @return KAccountNo
|
||||
*/
|
||||
public String getKAccountNo() {
|
||||
return KAccountNo;
|
||||
}
|
||||
|
||||
/**Sets the KAccountNo value for this Bu18WebReturnInfoDTO.
|
||||
* @param KAccountNo
|
||||
*/
|
||||
public void setKAccountNo(String KAccountNo) {
|
||||
this.KAccountNo = KAccountNo;
|
||||
}
|
||||
|
||||
/**Gets the NAccountNo value for this Bu18WebReturnInfoDTO.
|
||||
* @return NAccountNo
|
||||
*/
|
||||
public String getNAccountNo() {
|
||||
return NAccountNo;
|
||||
}
|
||||
|
||||
/**Sets the NAccountNo value for this Bu18WebReturnInfoDTO.
|
||||
* @param NAccountNo
|
||||
*/
|
||||
public void setNAccountNo(String NAccountNo) {
|
||||
this.NAccountNo = NAccountNo;
|
||||
}
|
||||
|
||||
/**Gets the OAccountNo value for this Bu18WebReturnInfoDTO.
|
||||
* @return OAccountNo
|
||||
*/
|
||||
public String getOAccountNo() {
|
||||
return OAccountNo;
|
||||
}
|
||||
|
||||
/**Sets the OAccountNo value for this Bu18WebReturnInfoDTO.
|
||||
* @param OAccountNo
|
||||
*/
|
||||
public void setOAccountNo(String OAccountNo) {
|
||||
this.OAccountNo = OAccountNo;
|
||||
}
|
||||
|
||||
/**Gets the PAccountNo value for this Bu18WebReturnInfoDTO.
|
||||
* @return PAccountNo
|
||||
*/
|
||||
public String getPAccountNo() {
|
||||
return PAccountNo;
|
||||
}
|
||||
|
||||
/**Sets the PAccountNo value for this Bu18WebReturnInfoDTO.
|
||||
* @param PAccountNo
|
||||
*/
|
||||
public void setPAccountNo(String PAccountNo) {
|
||||
this.PAccountNo = PAccountNo;
|
||||
}
|
||||
|
||||
/**Gets the QAccountNo value for this Bu18WebReturnInfoDTO.
|
||||
* @return QAccountNo
|
||||
*/
|
||||
public String getQAccountNo() {
|
||||
return QAccountNo;
|
||||
}
|
||||
|
||||
/**Sets the QAccountNo value for this Bu18WebReturnInfoDTO.
|
||||
* @param QAccountNo
|
||||
*/
|
||||
public void setQAccountNo(String QAccountNo) {
|
||||
this.QAccountNo = QAccountNo;
|
||||
}
|
||||
|
||||
/**Gets the SAccountNo value for this Bu18WebReturnInfoDTO.
|
||||
* @return SAccountNo
|
||||
*/
|
||||
public String getSAccountNo() {
|
||||
return SAccountNo;
|
||||
}
|
||||
|
||||
/**Sets the SAccountNo value for this Bu18WebReturnInfoDTO.
|
||||
* @param SAccountNo
|
||||
*/
|
||||
public void setSAccountNo(String SAccountNo) {
|
||||
this.SAccountNo = SAccountNo;
|
||||
}
|
||||
|
||||
/**Gets the WAccountNo value for this Bu18WebReturnInfoDTO.
|
||||
* @return WAccountNo
|
||||
*/
|
||||
public String getWAccountNo() {
|
||||
return WAccountNo;
|
||||
}
|
||||
|
||||
/**Sets the WAccountNo value for this Bu18WebReturnInfoDTO.
|
||||
* @param WAccountNo
|
||||
*/
|
||||
public void setWAccountNo(String WAccountNo) {
|
||||
this.WAccountNo = WAccountNo;
|
||||
}
|
||||
|
||||
/**Gets the buAfk value for this Bu18WebReturnInfoDTO.
|
||||
* @return buAfk
|
||||
*/
|
||||
public String getBuAfk() {
|
||||
return buAfk;
|
||||
}
|
||||
|
||||
/**Sets the buAfk value for this Bu18WebReturnInfoDTO.
|
||||
* @param buAfk
|
||||
*/
|
||||
public void setBuAfk(String buAfk) {
|
||||
this.buAfk = buAfk;
|
||||
}
|
||||
|
||||
/**Gets the enapbuNo value for this Bu18WebReturnInfoDTO.
|
||||
* @return enapbuNo
|
||||
*/
|
||||
public String getEnapbuNo() {
|
||||
return enapbuNo;
|
||||
}
|
||||
|
||||
/**Sets the enapbuNo value for this Bu18WebReturnInfoDTO.
|
||||
* @param enapbuNo
|
||||
*/
|
||||
public void setEnapbuNo(String enapbuNo) {
|
||||
this.enapbuNo = enapbuNo;
|
||||
}
|
||||
|
||||
/**Gets the etcColmn1 value for this Bu18WebReturnInfoDTO.
|
||||
* @return etcColmn1
|
||||
*/
|
||||
public String getEtcColmn1() {
|
||||
return etcColmn1;
|
||||
}
|
||||
|
||||
/**Sets the etcColmn1 value for this Bu18WebReturnInfoDTO.
|
||||
* @param etcColmn1
|
||||
*/
|
||||
public void setEtcColmn1(String etcColmn1) {
|
||||
this.etcColmn1 = etcColmn1;
|
||||
}
|
||||
|
||||
/**Gets the etcColmn2 value for this Bu18WebReturnInfoDTO.
|
||||
* @return etcColmn2
|
||||
*/
|
||||
public String getEtcColmn2() {
|
||||
return etcColmn2;
|
||||
}
|
||||
|
||||
/**Sets the etcColmn2 value for this Bu18WebReturnInfoDTO.
|
||||
* @param etcColmn2
|
||||
*/
|
||||
public void setEtcColmn2(String etcColmn2) {
|
||||
this.etcColmn2 = etcColmn2;
|
||||
}
|
||||
|
||||
/**Gets the etcColmn3 value for this Bu18WebReturnInfoDTO.
|
||||
* @return etcColmn3
|
||||
*/
|
||||
public String getEtcColmn3() {
|
||||
return etcColmn3;
|
||||
}
|
||||
|
||||
/**Sets the etcColmn3 value for this Bu18WebReturnInfoDTO.
|
||||
* @param etcColmn3
|
||||
*/
|
||||
public void setEtcColmn3(String etcColmn3) {
|
||||
this.etcColmn3 = etcColmn3;
|
||||
}
|
||||
|
||||
/**Gets the etcColmn4 value for this Bu18WebReturnInfoDTO.
|
||||
* @return etcColmn4
|
||||
*/
|
||||
public String getEtcColmn4() {
|
||||
return etcColmn4;
|
||||
}
|
||||
|
||||
/**Sets the etcColmn4 value for this Bu18WebReturnInfoDTO.
|
||||
* @param etcColmn4
|
||||
*/
|
||||
public void setEtcColmn4(String etcColmn4) {
|
||||
this.etcColmn4 = etcColmn4;
|
||||
}
|
||||
|
||||
/**Gets the etcColmn5 value for this Bu18WebReturnInfoDTO.
|
||||
* @return etcColmn5
|
||||
*/
|
||||
public String getEtcColmn5() {
|
||||
return etcColmn5;
|
||||
}
|
||||
|
||||
/**Sets the etcColmn5 value for this Bu18WebReturnInfoDTO.
|
||||
* @param etcColmn5
|
||||
*/
|
||||
public void setEtcColmn5(String etcColmn5) {
|
||||
this.etcColmn5 = etcColmn5;
|
||||
}
|
||||
|
||||
/**Gets the noticeAk value for this Bu18WebReturnInfoDTO.
|
||||
* @return noticeAk
|
||||
*/
|
||||
public String getNoticeAk() {
|
||||
return noticeAk;
|
||||
}
|
||||
|
||||
/**Sets the noticeAk value for this Bu18WebReturnInfoDTO.
|
||||
* @param noticeAk
|
||||
*/
|
||||
public void setNoticeAk(String noticeAk) {
|
||||
this.noticeAk = noticeAk;
|
||||
}
|
||||
|
||||
/**Gets the returnCode value for this Bu18WebReturnInfoDTO.
|
||||
* @return returnCode
|
||||
*/
|
||||
public String getReturnCode() {
|
||||
return returnCode;
|
||||
}
|
||||
|
||||
/**Sets the returnCode value for this Bu18WebReturnInfoDTO.
|
||||
* @param returnCode
|
||||
*/
|
||||
public void setReturnCode(String returnCode) {
|
||||
this.returnCode = returnCode;
|
||||
}
|
||||
|
||||
/**Gets the returnMsg value for this Bu18WebReturnInfoDTO.
|
||||
* @return returnMsg
|
||||
*/
|
||||
public String getReturnMsg() {
|
||||
return returnMsg;
|
||||
}
|
||||
|
||||
/**Sets the returnMsg value for this Bu18WebReturnInfoDTO.
|
||||
* @param returnMsg
|
||||
*/
|
||||
public void setReturnMsg(String returnMsg) {
|
||||
this.returnMsg = returnMsg;
|
||||
}
|
||||
|
||||
private Object __equalsCalc = null;
|
||||
|
||||
@Override
|
||||
public synchronized boolean equals(Object obj) {
|
||||
if (!(obj instanceof Bu18WebReturnInfoDTO)) return false;
|
||||
Bu18WebReturnInfoDTO other = (Bu18WebReturnInfoDTO) obj;
|
||||
if (this == obj) return true;
|
||||
if (__equalsCalc != null) {
|
||||
return (__equalsCalc == obj);
|
||||
}
|
||||
__equalsCalc = obj;
|
||||
boolean _equals =
|
||||
equals(this.CAccountNo, other.getCAccountNo()) &&
|
||||
equals(this.FAccountNo, other.getFAccountNo()) &&
|
||||
equals(this.HAccountNo, other.getHAccountNo()) &&
|
||||
equals(this.IAccountNo, other.getIAccountNo()) &&
|
||||
equals(this.KAccountNo, other.getKAccountNo()) &&
|
||||
equals(this.NAccountNo, other.getNAccountNo()) &&
|
||||
equals(this.OAccountNo, other.getOAccountNo()) &&
|
||||
equals(this.PAccountNo, other.getPAccountNo()) &&
|
||||
equals(this.QAccountNo, other.getQAccountNo()) &&
|
||||
equals(this.SAccountNo, other.getSAccountNo()) &&
|
||||
equals(this.WAccountNo, other.getWAccountNo()) &&
|
||||
equals(this.buAfk, other.getBuAfk()) &&
|
||||
equals(this.enapbuNo, other.getEnapbuNo()) &&
|
||||
equals(this.etcColmn1, other.getEtcColmn1()) &&
|
||||
equals(this.etcColmn2, other.getEtcColmn2()) &&
|
||||
equals(this.etcColmn3, other.getEtcColmn3()) &&
|
||||
equals(this.etcColmn4, other.getEtcColmn4()) &&
|
||||
equals(this.etcColmn5, other.getEtcColmn5()) &&
|
||||
equals(this.noticeAk, other.getNoticeAk()) &&
|
||||
equals(this.returnCode, other.getReturnCode()) &&
|
||||
equals(this.returnMsg, other.getReturnMsg());
|
||||
__equalsCalc = null;
|
||||
return _equals;
|
||||
}
|
||||
private boolean __hashCodeCalc = false;
|
||||
@Override
|
||||
public synchronized int hashCode() {
|
||||
if (__hashCodeCalc) {
|
||||
return 0;
|
||||
}
|
||||
__hashCodeCalc = true;
|
||||
int _hashCode = hashCode(
|
||||
getCAccountNo(),
|
||||
getFAccountNo(),
|
||||
getHAccountNo(),
|
||||
getIAccountNo(),
|
||||
getKAccountNo(),
|
||||
getNAccountNo(),
|
||||
getOAccountNo(),
|
||||
getPAccountNo(),
|
||||
getQAccountNo(),
|
||||
getSAccountNo(),
|
||||
getWAccountNo(),
|
||||
getBuAfk(),
|
||||
getEnapbuNo(),
|
||||
getEtcColmn1(),
|
||||
getEtcColmn2(),
|
||||
getEtcColmn3(),
|
||||
getEtcColmn4(),
|
||||
getEtcColmn5(),
|
||||
getNoticeAk(),
|
||||
getReturnCode(),
|
||||
getReturnMsg()
|
||||
);
|
||||
__hashCodeCalc = false;
|
||||
return _hashCode;
|
||||
}
|
||||
|
||||
// Type metadata
|
||||
private static org.apache.axis.description.TypeDesc typeDesc = SntrPreNoticeWebService.descriptor().type(
|
||||
Bu18WebReturnInfoDTO.class,
|
||||
desc -> {
|
||||
String name = "";
|
||||
return new ElementDesc[] {
|
||||
desc.field(name = "CAccountNo", desc.qname("", name), "string", true),
|
||||
desc.field(name = "FAccountNo", desc.qname("", name), "string", true),
|
||||
desc.field(name = "HAccountNo", desc.qname("", name), "string", true),
|
||||
desc.field(name = "IAccountNo", desc.qname("", name), "string", true),
|
||||
desc.field(name = "KAccountNo", desc.qname("", name), "string", true),
|
||||
desc.field(name = "NAccountNo", desc.qname("", name), "string", true),
|
||||
desc.field(name = "OAccountNo", desc.qname("", name), "string", true),
|
||||
desc.field(name = "PAccountNo", desc.qname("", name), "string", true),
|
||||
desc.field(name = "QAccountNo", desc.qname("", name), "string", true),
|
||||
desc.field(name = "SAccountNo", desc.qname("", name), "string", true),
|
||||
desc.field(name = "WAccountNo", desc.qname("", name), "string", true),
|
||||
desc.field(name = "buAfk", desc.qname("", name), "string", true),
|
||||
desc.field(name = "enapbuNo", desc.qname("", name), "string", true),
|
||||
desc.field(name = "etcColmn1", desc.qname("", name), "string", true),
|
||||
desc.field(name = "etcColmn2", desc.qname("", name), "string", true),
|
||||
desc.field(name = "etcColmn3", desc.qname("", name), "string", true),
|
||||
desc.field(name = "etcColmn4", desc.qname("", name), "string", true),
|
||||
desc.field(name = "etcColmn5", desc.qname("", name), "string", true),
|
||||
desc.field(name = "noticeAk", desc.qname("", name), "string", true),
|
||||
desc.field(name = "returnCode", desc.qname("", name), "string", true),
|
||||
desc.field(name = "returnMsg", desc.qname("", name), "string", true)
|
||||
};
|
||||
}
|
||||
);
|
||||
|
||||
/**
|
||||
* Return type metadata object
|
||||
*/
|
||||
public static org.apache.axis.description.TypeDesc getTypeDesc() {
|
||||
return typeDesc;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get Custom Serializer
|
||||
*/
|
||||
public static Serializer getSerializer(String mechType, Class<?> _javaType, QName _xmlType) {
|
||||
return new BeanSerializer(_javaType, _xmlType, typeDesc);
|
||||
}
|
||||
|
||||
/**
|
||||
* Get Custom Deserializer
|
||||
*/
|
||||
public static Deserializer getDeserializer(String mechType, Class<?> _javaType, QName _xmlType) {
|
||||
return new BeanDeserializer(_javaType, _xmlType, typeDesc);
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,177 @@
|
||||
package cokr.xit.interfaces.sntris.prenotice;
|
||||
|
||||
import javax.xml.namespace.QName;
|
||||
|
||||
import org.apache.axis.description.ElementDesc;
|
||||
import org.apache.axis.description.TypeDesc;
|
||||
import org.apache.axis.encoding.Deserializer;
|
||||
import org.apache.axis.encoding.Serializer;
|
||||
import org.apache.axis.encoding.ser.BeanDeserializer;
|
||||
import org.apache.axis.encoding.ser.BeanSerializer;
|
||||
|
||||
import cokr.xit.interfaces.sntris.SntrisWSDTO;
|
||||
|
||||
public class Bu18WebReturnResultDTO extends SntrisWSDTO {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
private String bookNo;
|
||||
private String buAfk;
|
||||
private String sendYmd;
|
||||
private String sysGubun;
|
||||
private String workYmd;
|
||||
|
||||
public Bu18WebReturnResultDTO() {}
|
||||
|
||||
public Bu18WebReturnResultDTO(
|
||||
String bookNo,
|
||||
String buAfk,
|
||||
String sendYmd,
|
||||
String sysGubun,
|
||||
String workYmd
|
||||
) {
|
||||
this.bookNo = bookNo;
|
||||
this.buAfk = buAfk;
|
||||
this.sendYmd = sendYmd;
|
||||
this.sysGubun = sysGubun;
|
||||
this.workYmd = workYmd;
|
||||
}
|
||||
|
||||
/**Gets the bookNo value for this Bu18WebReturnResultDTO.
|
||||
* @return bookNo
|
||||
*/
|
||||
public String getBookNo() {
|
||||
return bookNo;
|
||||
}
|
||||
|
||||
/**Sets the bookNo value for this Bu18WebReturnResultDTO.
|
||||
* @param bookNo
|
||||
*/
|
||||
public void setBookNo(String bookNo) {
|
||||
this.bookNo = bookNo;
|
||||
}
|
||||
|
||||
/**Gets the buAfk value for this Bu18WebReturnResultDTO.
|
||||
* @return buAfk
|
||||
*/
|
||||
public String getBuAfk() {
|
||||
return buAfk;
|
||||
}
|
||||
|
||||
/**Sets the buAfk value for this Bu18WebReturnResultDTO.
|
||||
* @param buAfk
|
||||
*/
|
||||
public void setBuAfk(String buAfk) {
|
||||
this.buAfk = buAfk;
|
||||
}
|
||||
|
||||
/**Gets the sendYmd value for this Bu18WebReturnResultDTO.
|
||||
* @return sendYmd
|
||||
*/
|
||||
public String getSendYmd() {
|
||||
return sendYmd;
|
||||
}
|
||||
|
||||
/**Sets the sendYmd value for this Bu18WebReturnResultDTO.
|
||||
* @param sendYmd
|
||||
*/
|
||||
public void setSendYmd(String sendYmd) {
|
||||
this.sendYmd = sendYmd;
|
||||
}
|
||||
|
||||
/**Gets the sysGubun value for this Bu18WebReturnResultDTO.
|
||||
* @return sysGubun
|
||||
*/
|
||||
public String getSysGubun() {
|
||||
return sysGubun;
|
||||
}
|
||||
|
||||
/**Sets the sysGubun value for this Bu18WebReturnResultDTO.
|
||||
* @param sysGubun
|
||||
*/
|
||||
public void setSysGubun(String sysGubun) {
|
||||
this.sysGubun = sysGubun;
|
||||
}
|
||||
|
||||
/**Gets the workYmd value for this Bu18WebReturnResultDTO.
|
||||
* @return workYmd
|
||||
*/
|
||||
public String getWorkYmd() {
|
||||
return workYmd;
|
||||
}
|
||||
|
||||
/**Sets the workYmd value for this Bu18WebReturnResultDTO.
|
||||
* @param workYmd
|
||||
*/
|
||||
public void setWorkYmd(String workYmd) {
|
||||
this.workYmd = workYmd;
|
||||
}
|
||||
|
||||
private Object __equalsCalc = null;
|
||||
@Override
|
||||
public synchronized boolean equals(Object obj) {
|
||||
if (!(obj instanceof Bu18WebReturnResultDTO)) return false;
|
||||
Bu18WebReturnResultDTO other = (Bu18WebReturnResultDTO) obj;
|
||||
if (this == obj) return true;
|
||||
if (__equalsCalc != null) {
|
||||
return (__equalsCalc == obj);
|
||||
}
|
||||
__equalsCalc = obj;
|
||||
boolean _equals =
|
||||
equals(this.bookNo, other.getBookNo()) &&
|
||||
equals(this.buAfk, other.getBuAfk()) &&
|
||||
equals(this.sendYmd, other.getSendYmd()) &&
|
||||
equals(this.sysGubun, other.getSysGubun()) &&
|
||||
equals(this.workYmd, other.getWorkYmd());
|
||||
__equalsCalc = null;
|
||||
return _equals;
|
||||
}
|
||||
|
||||
private boolean __hashCodeCalc = false;
|
||||
@Override
|
||||
public synchronized int hashCode() {
|
||||
if (__hashCodeCalc) {
|
||||
return 0;
|
||||
}
|
||||
__hashCodeCalc = true;
|
||||
int _hashCode = hashCode(
|
||||
getBookNo(),
|
||||
getBuAfk(),
|
||||
getSendYmd(),
|
||||
getSysGubun(),
|
||||
getWorkYmd()
|
||||
);
|
||||
__hashCodeCalc = false;
|
||||
return _hashCode;
|
||||
}
|
||||
|
||||
// Type metadata
|
||||
private static TypeDesc typeDesc = SntrPreNoticeWebService.descriptor().type(
|
||||
Bu18WebReturnResultDTO.class, desc -> {
|
||||
String name = "";
|
||||
return new ElementDesc[] {
|
||||
desc.field(name = "bookNo", desc.qname("", name), "string", true),
|
||||
desc.field(name = "buAfk", desc.qname("", name), "string", true),
|
||||
desc.field(name = "sendYmd", desc.qname("", name), "string", true),
|
||||
desc.field(name = "sysGubun", desc.qname("", name), "string", true),
|
||||
desc.field(name = "workYmd", desc.qname("", name), "string", true)
|
||||
};
|
||||
});
|
||||
|
||||
/**Return type metadata object
|
||||
*/
|
||||
public static TypeDesc getTypeDesc() {
|
||||
return typeDesc;
|
||||
}
|
||||
|
||||
/**Get Custom Serializer
|
||||
*/
|
||||
public static Serializer getSerializer(String mechType, Class<?>_javaType, QName _xmlType) {
|
||||
return new BeanSerializer(_javaType, _xmlType, typeDesc);
|
||||
}
|
||||
|
||||
/**Get Custom Deserializer
|
||||
*/
|
||||
public static Deserializer getDeserializer(String mechType, Class<?>_javaType, QName _xmlType) {
|
||||
return new BeanDeserializer(_javaType, _xmlType, typeDesc);
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,180 @@
|
||||
package cokr.xit.interfaces.sntris.prenotice;
|
||||
|
||||
import javax.xml.namespace.QName;
|
||||
|
||||
import org.apache.axis.description.ElementDesc;
|
||||
import org.apache.axis.description.TypeDesc;
|
||||
import org.apache.axis.encoding.Deserializer;
|
||||
import org.apache.axis.encoding.Serializer;
|
||||
import org.apache.axis.encoding.ser.BeanDeserializer;
|
||||
import org.apache.axis.encoding.ser.BeanSerializer;
|
||||
|
||||
import cokr.xit.interfaces.sntris.SntrisWSDTO;
|
||||
import cokr.xit.interfaces.sntris.buga.BugaWebService;
|
||||
|
||||
public class Bu18WebSMSResultDTO extends SntrisWSDTO {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
private String bookNo;
|
||||
private String buAfk;
|
||||
private String sendYmd;
|
||||
private String sysGubun;
|
||||
private String workYmd;
|
||||
|
||||
public Bu18WebSMSResultDTO() {}
|
||||
|
||||
public Bu18WebSMSResultDTO(
|
||||
String bookNo,
|
||||
String buAfk,
|
||||
String sendYmd,
|
||||
String sysGubun,
|
||||
String workYmd
|
||||
) {
|
||||
this.bookNo = bookNo;
|
||||
this.buAfk = buAfk;
|
||||
this.sendYmd = sendYmd;
|
||||
this.sysGubun = sysGubun;
|
||||
this.workYmd = workYmd;
|
||||
}
|
||||
|
||||
/**Gets the bookNo value for this Bu18WebSMSResultDTO.
|
||||
* @return bookNo
|
||||
*/
|
||||
public String getBookNo() {
|
||||
return bookNo;
|
||||
}
|
||||
|
||||
/**Sets the bookNo value for this Bu18WebSMSResultDTO.
|
||||
* @param bookNo
|
||||
*/
|
||||
public void setBookNo(String bookNo) {
|
||||
this.bookNo = bookNo;
|
||||
}
|
||||
|
||||
/**Gets the buAfk value for this Bu18WebSMSResultDTO.
|
||||
* @return buAfk
|
||||
*/
|
||||
public String getBuAfk() {
|
||||
return buAfk;
|
||||
}
|
||||
|
||||
/**Sets the buAfk value for this Bu18WebSMSResultDTO.
|
||||
* @param buAfk
|
||||
*/
|
||||
public void setBuAfk(String buAfk) {
|
||||
this.buAfk = buAfk;
|
||||
}
|
||||
|
||||
/**Gets the sendYmd value for this Bu18WebSMSResultDTO.
|
||||
* @return sendYmd
|
||||
*/
|
||||
public String getSendYmd() {
|
||||
return sendYmd;
|
||||
}
|
||||
|
||||
/**Sets the sendYmd value for this Bu18WebSMSResultDTO.
|
||||
* @param sendYmd
|
||||
*/
|
||||
public void setSendYmd(String sendYmd) {
|
||||
this.sendYmd = sendYmd;
|
||||
}
|
||||
|
||||
/**Gets the sysGubun value for this Bu18WebSMSResultDTO.
|
||||
* @return sysGubun
|
||||
*/
|
||||
public String getSysGubun() {
|
||||
return sysGubun;
|
||||
}
|
||||
|
||||
/**Sets the sysGubun value for this Bu18WebSMSResultDTO.
|
||||
* @param sysGubun
|
||||
*/
|
||||
public void setSysGubun(String sysGubun) {
|
||||
this.sysGubun = sysGubun;
|
||||
}
|
||||
|
||||
/**Gets the workYmd value for this Bu18WebSMSResultDTO.
|
||||
* @return workYmd
|
||||
*/
|
||||
public String getWorkYmd() {
|
||||
return workYmd;
|
||||
}
|
||||
|
||||
/**Sets the workYmd value for this Bu18WebSMSResultDTO.
|
||||
* @param workYmd
|
||||
*/
|
||||
public void setWorkYmd(String workYmd) {
|
||||
this.workYmd = workYmd;
|
||||
}
|
||||
|
||||
private Object __equalsCalc = null;
|
||||
@Override
|
||||
public synchronized boolean equals(Object obj) {
|
||||
if (!(obj instanceof Bu18WebSMSResultDTO)) return false;
|
||||
Bu18WebSMSResultDTO other = (Bu18WebSMSResultDTO) obj;
|
||||
if (this == obj) return true;
|
||||
if (__equalsCalc != null) {
|
||||
return (__equalsCalc == obj);
|
||||
}
|
||||
__equalsCalc = obj;
|
||||
boolean _equals =
|
||||
equals(this.bookNo, other.getBookNo()) &&
|
||||
equals(this.buAfk, other.getBuAfk()) &&
|
||||
equals(this.sendYmd, other.getSendYmd()) &&
|
||||
equals(this.sysGubun, other.getSysGubun()) &&
|
||||
equals(this.workYmd, other.getWorkYmd());
|
||||
__equalsCalc = null;
|
||||
return _equals;
|
||||
}
|
||||
|
||||
private boolean __hashCodeCalc = false;
|
||||
@Override
|
||||
public synchronized int hashCode() {
|
||||
if (__hashCodeCalc) {
|
||||
return 0;
|
||||
}
|
||||
__hashCodeCalc = true;
|
||||
int _hashCode = hashCode(
|
||||
getBookNo(),
|
||||
getBuAfk(),
|
||||
getSendYmd(),
|
||||
getSysGubun(),
|
||||
getWorkYmd()
|
||||
);
|
||||
__hashCodeCalc = false;
|
||||
return _hashCode;
|
||||
}
|
||||
|
||||
// Type metadata
|
||||
private static TypeDesc typeDesc = BugaWebService.descriptor().type(
|
||||
Bu18WebSMSResultDTO.class,
|
||||
desc -> {
|
||||
String name = "";
|
||||
return new ElementDesc[] {
|
||||
desc.field(name = "bookNo", desc.qname("", name), "string", true),
|
||||
desc.field(name = "buAfk", desc.qname("", name), "string", true),
|
||||
desc.field(name = "sendYmd", desc.qname("", name), "string", true),
|
||||
desc.field(name = "sysGubun", desc.qname("", name), "string", true),
|
||||
desc.field(name = "workYmd", desc.qname("", name), "string", true),
|
||||
};
|
||||
}
|
||||
);
|
||||
|
||||
/**Return type metadata object
|
||||
*/
|
||||
public static TypeDesc getTypeDesc() {
|
||||
return typeDesc;
|
||||
}
|
||||
|
||||
/**Get Custom Serializer
|
||||
*/
|
||||
public static Serializer getSerializer(String mechType, Class<?> _javaType, QName _xmlType) {
|
||||
return new BeanSerializer(_javaType, _xmlType, typeDesc);
|
||||
}
|
||||
|
||||
/**Get Custom Deserializer
|
||||
*/
|
||||
public static Deserializer getDeserializer(String mechType, Class<?> _javaType, QName _xmlType) {
|
||||
return new BeanDeserializer(_javaType, _xmlType, typeDesc);
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,14 @@
|
||||
package cokr.xit.interfaces.sntris.prenotice;
|
||||
|
||||
import java.rmi.Remote;
|
||||
import java.rmi.RemoteException;
|
||||
|
||||
import cokr.xit.interfaces.sntris.StatusCodeWSDTO;
|
||||
|
||||
public interface SntrPreNoticeWS extends Remote {
|
||||
Bu18WebReturnInfoDTO webInsertPreNoticeInfo(Bu18WebPreNoticeDTO bu18WebPreNoticeDTO_1) throws RemoteException;
|
||||
|
||||
StatusCodeWSDTO webInsertReturnResultInfo(Bu18WebReturnResultDTO bu18WebReturnResultDTO_1) throws RemoteException;
|
||||
|
||||
StatusCodeWSDTO webSMSResultInfo(Bu18WebSMSResultDTO bu18WebSMSResultDTO_1) throws RemoteException;
|
||||
}
|
||||
@ -0,0 +1,257 @@
|
||||
package cokr.xit.interfaces.sntris.prenotice;
|
||||
|
||||
import java.rmi.RemoteException;
|
||||
import java.util.Enumeration;
|
||||
import java.util.List;
|
||||
import java.util.Vector;
|
||||
|
||||
import javax.xml.namespace.QName;
|
||||
|
||||
import org.apache.axis.AxisEngine;
|
||||
import org.apache.axis.AxisFault;
|
||||
import org.apache.axis.NoEndPointException;
|
||||
import org.apache.axis.client.Call;
|
||||
import org.apache.axis.client.Service;
|
||||
import org.apache.axis.client.Stub;
|
||||
import org.apache.axis.description.OperationDesc;
|
||||
import org.apache.axis.description.ParameterDesc;
|
||||
import org.apache.axis.encoding.DeserializerFactory;
|
||||
import org.apache.axis.encoding.SerializerFactory;
|
||||
import org.apache.axis.encoding.ser.BeanDeserializerFactory;
|
||||
import org.apache.axis.encoding.ser.BeanSerializerFactory;
|
||||
import org.apache.axis.soap.SOAPConstants;
|
||||
import org.apache.axis.utils.JavaUtils;
|
||||
|
||||
import cokr.xit.interfaces.sntris.Descriptor;
|
||||
import cokr.xit.interfaces.sntris.StatusCodeWSDTO;
|
||||
|
||||
public class SntrPreNoticeWSBindingStub extends Stub implements SntrPreNoticeWS {
|
||||
private Vector<QName> cachedSerQNames = new Vector<>();
|
||||
private Vector<Class<?>> cachedSerClasses = new Vector<>();
|
||||
private Vector<Object> cachedSerFactories = new Vector<>();
|
||||
private Vector<Object> cachedDeserFactories = new Vector<>();
|
||||
|
||||
static final OperationDesc [] _operations;
|
||||
static {
|
||||
Descriptor descriptor = SntrPreNoticeWebService.descriptor();
|
||||
_operations = new OperationDesc[] {
|
||||
descriptor.operation(
|
||||
"webInsertPreNoticeInfo", Bu18WebReturnInfoDTO.class, descriptor.qname("", "result"),
|
||||
desc -> new ParameterDesc[] {
|
||||
desc.param(desc.qname("", "Bu18WebPreNoticeDTO_1"), Bu18WebPreNoticeDTO.class, true)
|
||||
}
|
||||
),
|
||||
descriptor.operation(
|
||||
"webInsertReturnResultInfo", StatusCodeWSDTO.class, descriptor.qname("", "result"),
|
||||
desc -> new ParameterDesc[] {
|
||||
desc.param(desc.qname("", "Bu18WebReturnResultDTO_1"), Bu18WebReturnResultDTO.class, true)
|
||||
}
|
||||
),
|
||||
descriptor.operation(
|
||||
"webSMSResultInfo", StatusCodeWSDTO.class, descriptor.qname("", "result"),
|
||||
desc -> new ParameterDesc[] {
|
||||
desc.param(desc.qname("", "Bu18WebSMSResultDTO_1"), Bu18WebSMSResultDTO.class, true)
|
||||
}
|
||||
)
|
||||
};
|
||||
}
|
||||
|
||||
public SntrPreNoticeWSBindingStub() throws AxisFault {
|
||||
this(null);
|
||||
}
|
||||
|
||||
public SntrPreNoticeWSBindingStub(java.net.URL endpointURL, Service service) throws AxisFault {
|
||||
this(service);
|
||||
super.cachedEndpoint = endpointURL;
|
||||
}
|
||||
|
||||
public SntrPreNoticeWSBindingStub(Service service) throws AxisFault {
|
||||
if (service == null) {
|
||||
super.service = new Service();
|
||||
} else {
|
||||
super.service = service;
|
||||
}
|
||||
((Service)super.service).setTypeMappingVersion("1.2");
|
||||
|
||||
Descriptor descriptor = SntrPreNoticeWebService.descriptor();
|
||||
List.of(
|
||||
Bu18WebPreNoticeDTO.class, Bu18WebReturnInfoDTO.class, Bu18WebReturnResultDTO.class,
|
||||
Bu18WebSMSResultDTO.class, StatusCodeWSDTO.class
|
||||
).forEach(klass -> {
|
||||
cachedSerQNames.add(descriptor.qname(klass.getSimpleName()));
|
||||
cachedSerClasses.add(klass);
|
||||
cachedSerFactories.add(BeanSerializerFactory.class);
|
||||
cachedDeserFactories.add(BeanDeserializerFactory.class);
|
||||
});
|
||||
}
|
||||
|
||||
protected Call createCall() throws RemoteException {
|
||||
try {
|
||||
Call _call = super._createCall();
|
||||
if (super.maintainSessionSet) {
|
||||
_call.setMaintainSession(super.maintainSession);
|
||||
}
|
||||
if (super.cachedUsername != null) {
|
||||
_call.setUsername(super.cachedUsername);
|
||||
}
|
||||
if (super.cachedPassword != null) {
|
||||
_call.setPassword(super.cachedPassword);
|
||||
}
|
||||
if (super.cachedEndpoint != null) {
|
||||
_call.setTargetEndpointAddress(super.cachedEndpoint);
|
||||
}
|
||||
if (super.cachedTimeout != null) {
|
||||
_call.setTimeout(super.cachedTimeout);
|
||||
}
|
||||
if (super.cachedPortName != null) {
|
||||
_call.setPortName(super.cachedPortName);
|
||||
}
|
||||
Enumeration keys = super.cachedProperties.keys();
|
||||
while (keys.hasMoreElements()) {
|
||||
String key = (String) keys.nextElement();
|
||||
_call.setProperty(key, super.cachedProperties.get(key));
|
||||
}
|
||||
// All the type mapping information is registered
|
||||
// when the first call is made.
|
||||
// The type mapping information is actually registered in
|
||||
// the TypeMappingRegistry of the service, which
|
||||
// is the reason why registration is only needed for the first call.
|
||||
synchronized (this) {
|
||||
if (firstCall()) {
|
||||
// must set encoding style before registering serializers
|
||||
_call.setEncodingStyle(null);
|
||||
for (int i = 0; i < cachedSerFactories.size(); ++i) {
|
||||
Class cls = cachedSerClasses.get(i);
|
||||
QName qName =
|
||||
cachedSerQNames.get(i);
|
||||
Object x = cachedSerFactories.get(i);
|
||||
if (x instanceof Class) {
|
||||
Class sf = (Class)
|
||||
cachedSerFactories.get(i);
|
||||
Class df = (Class)
|
||||
cachedDeserFactories.get(i);
|
||||
_call.registerTypeMapping(cls, qName, sf, df, false);
|
||||
}
|
||||
else if (x instanceof SerializerFactory) {
|
||||
SerializerFactory sf = (SerializerFactory)
|
||||
cachedSerFactories.get(i);
|
||||
DeserializerFactory df = (DeserializerFactory)
|
||||
cachedDeserFactories.get(i);
|
||||
_call.registerTypeMapping(cls, qName, sf, df, false);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
return _call;
|
||||
}
|
||||
catch (Throwable _t) {
|
||||
throw new AxisFault("Failure trying to get the Call object", _t);
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public Bu18WebReturnInfoDTO webInsertPreNoticeInfo(Bu18WebPreNoticeDTO bu18WebPreNoticeDTO_1) throws RemoteException {
|
||||
if (super.cachedEndpoint == null) {
|
||||
throw new NoEndPointException();
|
||||
}
|
||||
Call _call = createCall();
|
||||
_call.setOperation(_operations[0]);
|
||||
_call.setUseSOAPAction(true);
|
||||
_call.setSOAPActionURI("SntrPreNoticeSoapAction");
|
||||
_call.setEncodingStyle(null);
|
||||
_call.setProperty(Call.SEND_TYPE_ATTR, Boolean.FALSE);
|
||||
_call.setProperty(AxisEngine.PROP_DOMULTIREFS, Boolean.FALSE);
|
||||
_call.setSOAPVersion(SOAPConstants.SOAP11_CONSTANTS);
|
||||
_call.setOperationName(new QName("urn:SntrPreNoticeWebService", "webInsertPreNoticeInfo"));
|
||||
|
||||
setRequestHeaders(_call);
|
||||
setAttachments(_call);
|
||||
try { Object _resp = _call.invoke(new Object[] {bu18WebPreNoticeDTO_1});
|
||||
|
||||
if (_resp instanceof RemoteException) {
|
||||
throw (RemoteException)_resp;
|
||||
}
|
||||
else {
|
||||
extractAttachments(_call);
|
||||
try {
|
||||
return (Bu18WebReturnInfoDTO) _resp;
|
||||
} catch (Exception _exception) {
|
||||
return (Bu18WebReturnInfoDTO) JavaUtils.convert(_resp, Bu18WebReturnInfoDTO.class);
|
||||
}
|
||||
}
|
||||
} catch (AxisFault axisFaultException) {
|
||||
throw axisFaultException;
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public StatusCodeWSDTO webInsertReturnResultInfo(Bu18WebReturnResultDTO bu18WebReturnResultDTO_1) throws RemoteException {
|
||||
if (super.cachedEndpoint == null) {
|
||||
throw new NoEndPointException();
|
||||
}
|
||||
Call _call = createCall();
|
||||
_call.setOperation(_operations[1]);
|
||||
_call.setUseSOAPAction(true);
|
||||
_call.setSOAPActionURI("SntrPreNoticeSoapAction");
|
||||
_call.setEncodingStyle(null);
|
||||
_call.setProperty(Call.SEND_TYPE_ATTR, Boolean.FALSE);
|
||||
_call.setProperty(AxisEngine.PROP_DOMULTIREFS, Boolean.FALSE);
|
||||
_call.setSOAPVersion(SOAPConstants.SOAP11_CONSTANTS);
|
||||
_call.setOperationName(new QName("urn:SntrPreNoticeWebService", "webInsertReturnResultInfo"));
|
||||
|
||||
setRequestHeaders(_call);
|
||||
setAttachments(_call);
|
||||
try { Object _resp = _call.invoke(new Object[] {bu18WebReturnResultDTO_1});
|
||||
|
||||
if (_resp instanceof RemoteException) {
|
||||
throw (RemoteException)_resp;
|
||||
}
|
||||
else {
|
||||
extractAttachments(_call);
|
||||
try {
|
||||
return (StatusCodeWSDTO) _resp;
|
||||
} catch (Exception _exception) {
|
||||
return (StatusCodeWSDTO) JavaUtils.convert(_resp, StatusCodeWSDTO.class);
|
||||
}
|
||||
}
|
||||
} catch (AxisFault axisFaultException) {
|
||||
throw axisFaultException;
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public StatusCodeWSDTO webSMSResultInfo(Bu18WebSMSResultDTO bu18WebSMSResultDTO_1) throws RemoteException {
|
||||
if (super.cachedEndpoint == null) {
|
||||
throw new NoEndPointException();
|
||||
}
|
||||
Call _call = createCall();
|
||||
_call.setOperation(_operations[2]);
|
||||
_call.setUseSOAPAction(true);
|
||||
_call.setSOAPActionURI("SntrPreNoticeSoapAction");
|
||||
_call.setEncodingStyle(null);
|
||||
_call.setProperty(Call.SEND_TYPE_ATTR, Boolean.FALSE);
|
||||
_call.setProperty(AxisEngine.PROP_DOMULTIREFS, Boolean.FALSE);
|
||||
_call.setSOAPVersion(SOAPConstants.SOAP11_CONSTANTS);
|
||||
_call.setOperationName(new QName("urn:SntrPreNoticeWebService", "webSMSResultInfo"));
|
||||
|
||||
setRequestHeaders(_call);
|
||||
setAttachments(_call);
|
||||
try { Object _resp = _call.invoke(new Object[] {bu18WebSMSResultDTO_1});
|
||||
|
||||
if (_resp instanceof RemoteException) {
|
||||
throw (RemoteException)_resp;
|
||||
}
|
||||
else {
|
||||
extractAttachments(_call);
|
||||
try {
|
||||
return (StatusCodeWSDTO) _resp;
|
||||
} catch (Exception _exception) {
|
||||
return (StatusCodeWSDTO) JavaUtils.convert(_resp, StatusCodeWSDTO.class);
|
||||
}
|
||||
}
|
||||
} catch (AxisFault axisFaultException) {
|
||||
throw axisFaultException;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
@ -0,0 +1,65 @@
|
||||
package cokr.xit.interfaces.sntris.prenotice;
|
||||
|
||||
import java.rmi.RemoteException;
|
||||
|
||||
import javax.xml.rpc.ServiceException;
|
||||
import javax.xml.rpc.Stub;
|
||||
|
||||
import cokr.xit.interfaces.sntris.StatusCodeWSDTO;
|
||||
|
||||
public class SntrPreNoticeWSProxy implements SntrPreNoticeWS {
|
||||
private String _endpoint;
|
||||
private SntrPreNoticeWS sntrPreNoticeWS;
|
||||
|
||||
public SntrPreNoticeWSProxy() {
|
||||
_initSntrPreNoticeWSProxy();
|
||||
}
|
||||
|
||||
public SntrPreNoticeWSProxy(String endpoint) {
|
||||
_endpoint = endpoint;
|
||||
_initSntrPreNoticeWSProxy();
|
||||
}
|
||||
|
||||
private void _initSntrPreNoticeWSProxy() {
|
||||
try {
|
||||
sntrPreNoticeWS = (new SntrPreNoticeWebServiceLocator()).getSntrPreNoticeWSPort();
|
||||
if (sntrPreNoticeWS != null) {
|
||||
if (_endpoint != null)
|
||||
((Stub)sntrPreNoticeWS)._setProperty("javax.xml.rpc.service.endpoint.address", _endpoint);
|
||||
else
|
||||
_endpoint = (String)((Stub)sntrPreNoticeWS)._getProperty("javax.xml.rpc.service.endpoint.address");
|
||||
}
|
||||
} catch (ServiceException serviceException) {}
|
||||
}
|
||||
|
||||
public String getEndpoint() {
|
||||
return _endpoint;
|
||||
}
|
||||
|
||||
public void setEndpoint(String endpoint) {
|
||||
_endpoint = endpoint;
|
||||
if (sntrPreNoticeWS != null)
|
||||
((Stub)sntrPreNoticeWS)._setProperty("javax.xml.rpc.service.endpoint.address", _endpoint);
|
||||
}
|
||||
|
||||
public SntrPreNoticeWS getSntrPreNoticeWS() {
|
||||
if (sntrPreNoticeWS == null)
|
||||
_initSntrPreNoticeWSProxy();
|
||||
return sntrPreNoticeWS;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Bu18WebReturnInfoDTO webInsertPreNoticeInfo(Bu18WebPreNoticeDTO bu18WebPreNoticeDTO_1) throws RemoteException {
|
||||
return getSntrPreNoticeWS().webInsertPreNoticeInfo(bu18WebPreNoticeDTO_1);
|
||||
}
|
||||
|
||||
@Override
|
||||
public StatusCodeWSDTO webInsertReturnResultInfo(Bu18WebReturnResultDTO bu18WebReturnResultDTO_1) throws RemoteException {
|
||||
return getSntrPreNoticeWS().webInsertReturnResultInfo(bu18WebReturnResultDTO_1);
|
||||
}
|
||||
|
||||
@Override
|
||||
public StatusCodeWSDTO webSMSResultInfo(Bu18WebSMSResultDTO bu18WebSMSResultDTO_1) throws RemoteException {
|
||||
return getSntrPreNoticeWS().webSMSResultInfo(bu18WebSMSResultDTO_1);
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,20 @@
|
||||
package cokr.xit.interfaces.sntris.prenotice;
|
||||
|
||||
import java.net.URL;
|
||||
|
||||
import javax.xml.rpc.Service;
|
||||
import javax.xml.rpc.ServiceException;
|
||||
|
||||
import cokr.xit.interfaces.sntris.Descriptor;
|
||||
|
||||
public interface SntrPreNoticeWebService extends Service {
|
||||
static Descriptor descriptor() {
|
||||
return new Descriptor("SntrPreNoticeWebService");
|
||||
}
|
||||
|
||||
String getSntrPreNoticeWSPortAddress();
|
||||
|
||||
SntrPreNoticeWS getSntrPreNoticeWSPort() throws ServiceException;
|
||||
|
||||
SntrPreNoticeWS getSntrPreNoticeWSPort(URL portAddress) throws ServiceException;
|
||||
}
|
||||
@ -0,0 +1,147 @@
|
||||
package cokr.xit.interfaces.sntris.prenotice;
|
||||
|
||||
import java.net.MalformedURLException;
|
||||
import java.net.URL;
|
||||
import java.rmi.Remote;
|
||||
import java.util.Iterator;
|
||||
import java.util.Set;
|
||||
|
||||
import javax.xml.namespace.QName;
|
||||
import javax.xml.rpc.ServiceException;
|
||||
|
||||
import org.apache.axis.AxisFault;
|
||||
import org.apache.axis.EngineConfiguration;
|
||||
import org.apache.axis.client.Service;
|
||||
import org.apache.axis.client.Stub;
|
||||
|
||||
import cokr.xit.interfaces.sntris.Sntris;
|
||||
|
||||
public class SntrPreNoticeWebServiceLocator extends Service implements SntrPreNoticeWebService {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
public SntrPreNoticeWebServiceLocator() {}
|
||||
|
||||
|
||||
public SntrPreNoticeWebServiceLocator(EngineConfiguration config) {
|
||||
super(config);
|
||||
}
|
||||
|
||||
public SntrPreNoticeWebServiceLocator(String wsdlLoc, QName sName) throws ServiceException {
|
||||
super(wsdlLoc, sName);
|
||||
}
|
||||
|
||||
// Use to get a proxy class for SntrPreNoticeWSPort
|
||||
private String SntrPreNoticeWSPort_address = Sntris.get().url("prenotice");
|
||||
|
||||
@Override
|
||||
public String getSntrPreNoticeWSPortAddress() {
|
||||
return SntrPreNoticeWSPort_address;
|
||||
}
|
||||
|
||||
// The WSDD service name defaults to the port name.
|
||||
private String SntrPreNoticeWSPortWSDDServiceName = "SntrPreNoticeWSPort";
|
||||
|
||||
public String getSntrPreNoticeWSPortWSDDServiceName() {
|
||||
return SntrPreNoticeWSPortWSDDServiceName;
|
||||
}
|
||||
|
||||
public void setSntrPreNoticeWSPortWSDDServiceName(String name) {
|
||||
SntrPreNoticeWSPortWSDDServiceName = name;
|
||||
}
|
||||
|
||||
@Override
|
||||
public SntrPreNoticeWS getSntrPreNoticeWSPort() throws ServiceException {
|
||||
URL endpoint;
|
||||
try {
|
||||
endpoint = new URL(SntrPreNoticeWSPort_address);
|
||||
} catch (MalformedURLException e) {
|
||||
throw new ServiceException(e);
|
||||
}
|
||||
return getSntrPreNoticeWSPort(endpoint);
|
||||
}
|
||||
|
||||
@Override
|
||||
public SntrPreNoticeWS getSntrPreNoticeWSPort(URL portAddress) throws ServiceException {
|
||||
try {
|
||||
SntrPreNoticeWSBindingStub _stub = new SntrPreNoticeWSBindingStub(portAddress, this);
|
||||
_stub.setPortName(getSntrPreNoticeWSPortWSDDServiceName());
|
||||
return _stub;
|
||||
} catch (AxisFault e) {
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
public void setSntrPreNoticeWSPortEndpointAddress(String address) {
|
||||
SntrPreNoticeWSPort_address = address;
|
||||
}
|
||||
|
||||
/**
|
||||
* For the given interface, get the stub implementation.
|
||||
* If this service has no port for the given interface,
|
||||
* then ServiceException is thrown.
|
||||
*/
|
||||
@Override
|
||||
public Remote getPort(Class serviceEndpointInterface) throws ServiceException {
|
||||
try {
|
||||
if (SntrPreNoticeWS.class.isAssignableFrom(serviceEndpointInterface)) {
|
||||
SntrPreNoticeWSBindingStub _stub = new SntrPreNoticeWSBindingStub(new URL(SntrPreNoticeWSPort_address), this);
|
||||
_stub.setPortName(getSntrPreNoticeWSPortWSDDServiceName());
|
||||
return _stub;
|
||||
}
|
||||
} catch (Throwable t) {
|
||||
throw new ServiceException(t);
|
||||
}
|
||||
throw new ServiceException("There is no stub implementation for the interface: " + (serviceEndpointInterface == null ? "null" : serviceEndpointInterface.getName()));
|
||||
}
|
||||
|
||||
/**
|
||||
* For the given interface, get the stub implementation.
|
||||
* If this service has no port for the given interface,
|
||||
* then ServiceException is thrown.
|
||||
*/
|
||||
@Override
|
||||
public Remote getPort(QName portName, Class serviceEndpointInterface) throws ServiceException {
|
||||
if (portName == null) {
|
||||
return getPort(serviceEndpointInterface);
|
||||
}
|
||||
String inputPortName = portName.getLocalPart();
|
||||
if ("SntrPreNoticeWSPort".equals(inputPortName)) {
|
||||
return getSntrPreNoticeWSPort();
|
||||
}
|
||||
else {
|
||||
Remote _stub = getPort(serviceEndpointInterface);
|
||||
((Stub) _stub).setPortName(portName);
|
||||
return _stub;
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public QName getServiceName() {
|
||||
return new QName("urn:SntrPreNoticeWebService", "SntrPreNoticeWebService");
|
||||
}
|
||||
|
||||
private Set<QName> ports = Set.of(SntrPreNoticeWebService.descriptor().qname("SntrPreNoticeWSPort"));
|
||||
|
||||
@Override
|
||||
public Iterator getPorts() {
|
||||
return ports.iterator();
|
||||
}
|
||||
|
||||
/**
|
||||
* Set the endpoint address for the specified port name.
|
||||
*/
|
||||
public void setEndpointAddress(String portName, String address) throws ServiceException {
|
||||
if ("SntrPreNoticeWSPort".equals(portName)) {
|
||||
setSntrPreNoticeWSPortEndpointAddress(address);
|
||||
} else { // Unknown Port Name
|
||||
throw new ServiceException(" Cannot set Endpoint Address for Unknown Port" + portName);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Set the endpoint address for the specified port name.
|
||||
*/
|
||||
public void setEndpointAddress(QName portName, String address) throws ServiceException {
|
||||
setEndpointAddress(portName.getLocalPart(), address);
|
||||
}
|
||||
}
|
||||
@ -1,4 +1,21 @@
|
||||
{
|
||||
"nxrpImposition": "", /* 세외수입 부과 wsdl url */
|
||||
"nxrpSeizure": "" /* 세외수입 압류 wsdl url */
|
||||
"host": "http://98.33.4.167:8082",
|
||||
/* 운영: http://98.33.4.164
|
||||
개발: http://98.33.4.167:8082
|
||||
*/
|
||||
|
||||
"apis": [
|
||||
{ /* 부과 */
|
||||
"name": "imposition",
|
||||
"uri": "/BugaWebService/BugaWebService"
|
||||
},
|
||||
{ /* 사전통보 */
|
||||
"name": "prenotice",
|
||||
"uri": "/SntrPreNoticeWebService/SntrPreNoticeWebService"
|
||||
},
|
||||
{ /* 사전통보(파일연계) */
|
||||
"name": "fileoffer",
|
||||
"uri": "/SntrFileOfferWebService/SntrFileOfferWebService"
|
||||
}
|
||||
]
|
||||
}
|
||||
Loading…
Reference in New Issue