테스트
parent
8265f964d9
commit
d677241ddb
@ -1,57 +0,0 @@
|
||||
package cokr.xit.custom.boot;
|
||||
|
||||
import javax.sql.DataSource;
|
||||
|
||||
import org.egovframe.rte.psl.dataaccess.mapper.MapperConfigurer;
|
||||
import org.mybatis.spring.SqlSessionFactoryBean;
|
||||
import org.springframework.boot.context.properties.ConfigurationProperties;
|
||||
import org.springframework.boot.jdbc.DataSourceBuilder;
|
||||
import org.springframework.context.annotation.Bean;
|
||||
import org.springframework.context.annotation.Configuration;
|
||||
import org.springframework.core.io.support.PathMatchingResourcePatternResolver;
|
||||
|
||||
import cokr.xit.foundation.Assert;
|
||||
|
||||
/**데이터베이스 접속 관련 설정
|
||||
* <ul><li>{@link #dataSource() 데이터소스} 설정</li>
|
||||
* <li>{@link #sqlSession() MyBatis} 접속 설정</li>
|
||||
* <li>{@link #mapperConfigurer() 매퍼} 설정</li>
|
||||
* </ul>
|
||||
* @author mjkhan
|
||||
*/
|
||||
@Configuration
|
||||
public class DatasourceConfig2 {
|
||||
private DataSource dataSource;
|
||||
|
||||
|
||||
@Bean("externaldataSource")
|
||||
@ConfigurationProperties(prefix = "spring.externaldatasource.hikari")
|
||||
public DataSource externaldataSource() {
|
||||
return dataSource != null ? dataSource : (dataSource = DataSourceBuilder.create().build());
|
||||
}
|
||||
|
||||
@Bean
|
||||
public SqlSessionFactoryBean externalSqlSession() {
|
||||
try {
|
||||
SqlSessionFactoryBean bean = new SqlSessionFactoryBean();
|
||||
bean.setDataSource(externaldataSource());
|
||||
|
||||
PathMatchingResourcePatternResolver resolver = new PathMatchingResourcePatternResolver();
|
||||
bean.setConfigLocation(resolver.getResource("classpath:sql/mybatis-config.xml"));
|
||||
bean.setMapperLocations(resolver.getResources("classpath:sql/externalmapper/**/*.xml"));
|
||||
return bean;
|
||||
} catch (Exception e) {
|
||||
throw Assert.runtimeException(e);
|
||||
}
|
||||
}
|
||||
|
||||
@Bean
|
||||
public MapperConfigurer externalMapperConfigurer() {
|
||||
MapperConfigurer bean = new MapperConfigurer();
|
||||
|
||||
bean.setBasePackage("externalsystem.car");
|
||||
bean.setSqlSessionFactoryBeanName("externalSqlSession");
|
||||
|
||||
return bean;
|
||||
}
|
||||
}
|
@ -1,11 +0,0 @@
|
||||
package externalsystem.car.dao;
|
||||
|
||||
import org.egovframe.rte.psl.dataaccess.mapper.Mapper;
|
||||
|
||||
import cokr.xit.foundation.component.AbstractMapper;
|
||||
import cokr.xit.foundation.data.DataObject;
|
||||
|
||||
@Mapper("carMapper")
|
||||
public interface CarMapper extends AbstractMapper {
|
||||
DataObject selectCar(String vhrno);
|
||||
}
|
@ -1,56 +0,0 @@
|
||||
package testserver.wsdlserver.lvisserver;
|
||||
|
||||
import javax.jws.WebMethod;
|
||||
import javax.jws.WebParam;
|
||||
import javax.jws.WebResult;
|
||||
import javax.jws.WebService;
|
||||
import javax.xml.bind.annotation.XmlSeeAlso;
|
||||
import javax.xml.ws.RequestWrapper;
|
||||
import javax.xml.ws.ResponseWrapper;
|
||||
|
||||
/**
|
||||
* This class was generated by Apache CXF 3.6.2
|
||||
* 2023-10-05T13:03:18.702+09:00
|
||||
* Generated source version: 3.6.2
|
||||
*
|
||||
*/
|
||||
@WebService(name = "CarRegBasicInfo", targetNamespace = "componentNs:carregbasicinfo.reg.service.lvis/service.reg.CarRegBasicInfo")
|
||||
@XmlSeeAlso({ObjectFactory.class})
|
||||
public interface CarRegBasicInfo {
|
||||
|
||||
@WebMethod
|
||||
@RequestWrapper(localName = "findRegBasic", targetNamespace = "componentNs:carregbasicinfo.reg.service.lvis/service.reg.CarRegBasicInfo", className = "testserver.wsdlserver.lvisserver.FindRegBasic")
|
||||
@ResponseWrapper(localName = "findRegBasicResponseType", targetNamespace = "componentNs:carregbasicinfo.reg.service.lvis/service.reg.CarRegBasicInfo", className = "testserver.wsdlserver.lvisserver.FindRegBasicResponseType")
|
||||
@WebResult(name = "findRegBasicReturn", targetNamespace = "componentNs:carregbasicinfo.reg.service.lvis/service.reg.CarRegBasicInfo")
|
||||
public testserver.wsdlserver.lvisserver.FindRegBasicReturn findRegBasic(
|
||||
|
||||
@WebParam(name = "findRegBasicParameter", targetNamespace = "componentNs:carregbasicinfo.reg.service.lvis/service.reg.CarRegBasicInfo")
|
||||
testserver.wsdlserver.lvisserver.FindRegBasicParameter findRegBasicParameter,
|
||||
@WebParam(name = "requestContext", targetNamespace = "componentNs:carregbasicinfo.reg.service.lvis/service.reg.CarRegBasicInfo")
|
||||
testserver.wsdlserver.lvisserver.WsRequestContext requestContext
|
||||
);
|
||||
|
||||
@WebMethod
|
||||
@RequestWrapper(localName = "findRegBasicTest", targetNamespace = "componentNs:carregbasicinfo.reg.service.lvis/service.reg.CarRegBasicInfo", className = "testserver.wsdlserver.lvisserver.FindRegBasicTest")
|
||||
@ResponseWrapper(localName = "findRegBasicTestResponseType", targetNamespace = "componentNs:carregbasicinfo.reg.service.lvis/service.reg.CarRegBasicInfo", className = "testserver.wsdlserver.lvisserver.FindRegBasicTestResponseType")
|
||||
@WebResult(name = "findRegBasicTestReturn", targetNamespace = "componentNs:carregbasicinfo.reg.service.lvis/service.reg.CarRegBasicInfo")
|
||||
public testserver.wsdlserver.lvisserver.FindRegBasicTestReturn findRegBasicTest(
|
||||
|
||||
@WebParam(name = "findRegBasicTestParameter", targetNamespace = "componentNs:carregbasicinfo.reg.service.lvis/service.reg.CarRegBasicInfo")
|
||||
testserver.wsdlserver.lvisserver.FindRegBasicTestParameter findRegBasicTestParameter,
|
||||
@WebParam(name = "requestContext", targetNamespace = "componentNs:carregbasicinfo.reg.service.lvis/service.reg.CarRegBasicInfo")
|
||||
testserver.wsdlserver.lvisserver.WsRequestContext requestContext
|
||||
);
|
||||
|
||||
@WebMethod
|
||||
@RequestWrapper(localName = "findVhrnoBasicInfoCopertnOwner", targetNamespace = "componentNs:carregbasicinfo.reg.service.lvis/service.reg.CarRegBasicInfo", className = "testserver.wsdlserver.lvisserver.FindVhrnoBasicInfoCopertnOwner")
|
||||
@ResponseWrapper(localName = "findVhrnoBasicInfoCopertnOwnerResponseType", targetNamespace = "componentNs:carregbasicinfo.reg.service.lvis/service.reg.CarRegBasicInfo", className = "testserver.wsdlserver.lvisserver.FindVhrnoBasicInfoCopertnOwnerResponseType")
|
||||
@WebResult(name = "findVhrnoBasicInfoCopertnOwnerReturn", targetNamespace = "componentNs:carregbasicinfo.reg.service.lvis/service.reg.CarRegBasicInfo")
|
||||
public testserver.wsdlserver.lvisserver.FindVhrnoBasicInfoCopertnOwnerReturn findVhrnoBasicInfoCopertnOwner(
|
||||
|
||||
@WebParam(name = "findVhrnoBasicInfoCopertnOwnerParameter", targetNamespace = "componentNs:carregbasicinfo.reg.service.lvis/service.reg.CarRegBasicInfo")
|
||||
testserver.wsdlserver.lvisserver.FindVhrnoBasicInfoCopertnOwnerParameter findVhrnoBasicInfoCopertnOwnerParameter,
|
||||
@WebParam(name = "requestContext", targetNamespace = "componentNs:carregbasicinfo.reg.service.lvis/service.reg.CarRegBasicInfo")
|
||||
testserver.wsdlserver.lvisserver.WsRequestContext requestContext
|
||||
);
|
||||
}
|
@ -1,96 +0,0 @@
|
||||
/**
|
||||
* Licensed to the Apache Software Foundation (ASF) under one
|
||||
* or more contributor license agreements. See the NOTICE file
|
||||
* distributed with this work for additional information
|
||||
* regarding copyright ownership. The ASF licenses this file
|
||||
* to you under the Apache License, Version 2.0 (the
|
||||
* "License"); you may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing,
|
||||
* software distributed under the License is distributed on an
|
||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
* KIND, either express or implied. See the License for the
|
||||
* specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
package testserver.wsdlserver.lvisserver;
|
||||
|
||||
import java.util.logging.Logger;
|
||||
|
||||
import javax.annotation.Resource;
|
||||
|
||||
import cokr.xit.foundation.data.DataObject;
|
||||
import externalsystem.car.dao.CarMapper;
|
||||
|
||||
@javax.jws.WebService(name = "CarRegBasicInfo", portName = "CarRegBasicInfoPort",serviceName = "CarRegBasicInfoImplService",
|
||||
targetNamespace = "componentNs:carregbasicinfo.reg.service.lvis/service.reg.CarRegBasicInfo",
|
||||
endpointInterface = "testserver.wsdlserver.lvisserver.CarRegBasicInfo",
|
||||
wsdlLocation = "/resources/lvis_service.wsdl"
|
||||
)
|
||||
public class CarRegBasicInfoImpl implements CarRegBasicInfo {
|
||||
|
||||
@Resource(name = "carMapper")
|
||||
private CarMapper carMapper;
|
||||
|
||||
private static final Logger LOG = Logger.getLogger(CarRegBasicInfoImpl.class.getName());
|
||||
|
||||
@Override
|
||||
public FindRegBasicReturn findRegBasic(FindRegBasicParameter findRegBasicParameter,
|
||||
WsRequestContext requestContext) {
|
||||
|
||||
FindRegBasicReturn r = new FindRegBasicReturn();
|
||||
|
||||
ResultMessage rm = new ResultMessage();
|
||||
rm.setResult("OK");
|
||||
rm.setMessageId("MSG50000");
|
||||
r.setResultMessage(rm);
|
||||
|
||||
FindRegBasicReturnEaiResponseRsRecord frbrerr = new FindRegBasicReturnEaiResponseRsRecord();
|
||||
|
||||
String vhrno = findRegBasicParameter.getEaiRequestRs().get(0).getVHRNO();
|
||||
|
||||
DataObject carInfo = carMapper.selectCar(vhrno);
|
||||
if(carInfo != null) {
|
||||
frbrerr.setPROCESSIMPRTYRESNCODE("00");
|
||||
|
||||
frbrerr.setVHRNO(carInfo.string("VHRNO"));
|
||||
frbrerr.setMBERSECODE(carInfo.string("MBER_SE_CODE"));
|
||||
frbrerr.setMBERNM(carInfo.string("MBER_NM"));
|
||||
frbrerr.setMBERSENO(carInfo.string("MBER_SE_NO"));
|
||||
frbrerr.setUSESTRNGHLDROADNMCODE(carInfo.string("USE_STRNGHLD_ROAD_NM_CODE"));
|
||||
frbrerr.setUSESTRNGHLDBULDMAINNO(carInfo.string("USE_STRNGHLD_BULD_MAIN_NO"));
|
||||
frbrerr.setUSESTRNGHLDBULDSUBNO(carInfo.string("USE_STRNGHLD_BULD_SUB_NO"));
|
||||
frbrerr.setUSESTRNGHLDADRESNM(carInfo.string("USE_STRNGHLD_ADRES_NM"));
|
||||
frbrerr.setUSGSRHLDUNDGRNDBULDSECODE(carInfo.string("USGSRHLD_UNDGRND_BULD_SE_CODE"));
|
||||
frbrerr.setCNM(carInfo.string("CNM"));
|
||||
frbrerr.setCOLORNM(carInfo.string("COLOR_NM"));
|
||||
frbrerr.setVHCTYASORTCODE(carInfo.string("VHCTY_ASORT_CODE"));
|
||||
frbrerr.setMXMMLDG(carInfo.string("MXMM_LDG"));
|
||||
frbrerr.setVIN(carInfo.string("VIN"));
|
||||
frbrerr.setERSRREGISTDE(carInfo.string("ERSR_REGIST_DE"));
|
||||
}
|
||||
r.getEaiResponseRs().add(frbrerr);
|
||||
return r;
|
||||
}
|
||||
|
||||
@Override
|
||||
public FindRegBasicTestReturn findRegBasicTest(FindRegBasicTestParameter findRegBasicTestParameter,
|
||||
WsRequestContext requestContext) {
|
||||
|
||||
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
public FindVhrnoBasicInfoCopertnOwnerReturn findVhrnoBasicInfoCopertnOwner(
|
||||
FindVhrnoBasicInfoCopertnOwnerParameter findVhrnoBasicInfoCopertnOwnerParameter,
|
||||
WsRequestContext requestContext) {
|
||||
return null;
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
@ -1,92 +0,0 @@
|
||||
|
||||
package testserver.wsdlserver.lvisserver;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlRootElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>anonymous complex type에 대한 Java 클래스입니다.
|
||||
*
|
||||
* <p>다음 스키마 단편이 이 클래스에 포함되는 필요한 콘텐츠를 지정합니다.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType>
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="findRegBasicParameter" type="{componentNs:carregbasicinfo.reg.service.lvis/service.reg.CarRegBasicInfo}findRegBasicParameter"/>
|
||||
* <element name="requestContext" type="{types.common}WsRequestContext"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "", propOrder = {
|
||||
"findRegBasicParameter",
|
||||
"requestContext"
|
||||
})
|
||||
@XmlRootElement(name = "findRegBasic")
|
||||
public class FindRegBasic {
|
||||
|
||||
@XmlElement(required = true)
|
||||
protected FindRegBasicParameter findRegBasicParameter;
|
||||
@XmlElement(required = true)
|
||||
protected WsRequestContext requestContext;
|
||||
|
||||
/**
|
||||
* findRegBasicParameter 속성의 값을 가져옵니다.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link FindRegBasicParameter }
|
||||
*
|
||||
*/
|
||||
public FindRegBasicParameter getFindRegBasicParameter() {
|
||||
return findRegBasicParameter;
|
||||
}
|
||||
|
||||
/**
|
||||
* findRegBasicParameter 속성의 값을 설정합니다.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link FindRegBasicParameter }
|
||||
*
|
||||
*/
|
||||
public void setFindRegBasicParameter(FindRegBasicParameter value) {
|
||||
this.findRegBasicParameter = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* requestContext 속성의 값을 가져옵니다.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link WsRequestContext }
|
||||
*
|
||||
*/
|
||||
public WsRequestContext getRequestContext() {
|
||||
return requestContext;
|
||||
}
|
||||
|
||||
/**
|
||||
* requestContext 속성의 값을 설정합니다.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link WsRequestContext }
|
||||
*
|
||||
*/
|
||||
public void setRequestContext(WsRequestContext value) {
|
||||
this.requestContext = value;
|
||||
}
|
||||
|
||||
}
|
@ -1,69 +0,0 @@
|
||||
|
||||
package testserver.wsdlserver.lvisserver;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>findRegBasicParameter complex type에 대한 Java 클래스입니다.
|
||||
*
|
||||
* <p>다음 스키마 단편이 이 클래스에 포함되는 필요한 콘텐츠를 지정합니다.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="findRegBasicParameter">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="eaiRequest_rs" type="{componentNs:carregbasicinfo.reg.service.lvis/service.reg.CarRegBasicInfo}findRegBasicParameterEaiRequest_rsRecord" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "findRegBasicParameter", propOrder = {
|
||||
"eaiRequestRs"
|
||||
})
|
||||
public class FindRegBasicParameter {
|
||||
|
||||
@XmlElement(name = "eaiRequest_rs")
|
||||
protected List<FindRegBasicParameterEaiRequestRsRecord> eaiRequestRs;
|
||||
|
||||
/**
|
||||
* Gets the value of the eaiRequestRs property.
|
||||
*
|
||||
* <p>
|
||||
* This accessor method returns a reference to the live list,
|
||||
* not a snapshot. Therefore any modification you make to the
|
||||
* returned list will be present inside the JAXB object.
|
||||
* This is why there is not a <CODE>set</CODE> method for the eaiRequestRs property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getEaiRequestRs().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link FindRegBasicParameterEaiRequestRsRecord }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<FindRegBasicParameterEaiRequestRsRecord> getEaiRequestRs() {
|
||||
if (eaiRequestRs == null) {
|
||||
eaiRequestRs = new ArrayList<FindRegBasicParameterEaiRequestRsRecord>();
|
||||
}
|
||||
return this.eaiRequestRs;
|
||||
}
|
||||
|
||||
}
|
@ -1,209 +0,0 @@
|
||||
|
||||
package testserver.wsdlserver.lvisserver;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>findRegBasicParameterEaiRequest_rsRecord complex type에 대한 Java 클래스입니다.
|
||||
*
|
||||
* <p>다음 스키마 단편이 이 클래스에 포함되는 필요한 콘텐츠를 지정합니다.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="findRegBasicParameterEaiRequest_rsRecord">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="LEVY_STDDE">
|
||||
* <simpleType>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||
* <minLength value="0"/>
|
||||
* <maxLength value="128"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </element>
|
||||
* <element name="INQIRE_SE_CODE">
|
||||
* <simpleType>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||
* <minLength value="0"/>
|
||||
* <maxLength value="128"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </element>
|
||||
* <element name="VHRNO">
|
||||
* <simpleType>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||
* <minLength value="0"/>
|
||||
* <maxLength value="128"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </element>
|
||||
* <element name="VIN">
|
||||
* <simpleType>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||
* <minLength value="0"/>
|
||||
* <maxLength value="128"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </element>
|
||||
* <element name="OWNER_MBER_NO">
|
||||
* <simpleType>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||
* <minLength value="0"/>
|
||||
* <maxLength value="128"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </element>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "findRegBasicParameterEaiRequest_rsRecord", propOrder = {
|
||||
"levystdde",
|
||||
"inqiresecode",
|
||||
"vhrno",
|
||||
"vin",
|
||||
"ownermberno"
|
||||
})
|
||||
public class FindRegBasicParameterEaiRequestRsRecord {
|
||||
|
||||
@XmlElement(name = "LEVY_STDDE", required = true, nillable = true)
|
||||
protected String levystdde;
|
||||
@XmlElement(name = "INQIRE_SE_CODE", required = true, nillable = true)
|
||||
protected String inqiresecode;
|
||||
@XmlElement(name = "VHRNO", required = true, nillable = true)
|
||||
protected String vhrno;
|
||||
@XmlElement(name = "VIN", required = true, nillable = true)
|
||||
protected String vin;
|
||||
@XmlElement(name = "OWNER_MBER_NO", required = true, nillable = true)
|
||||
protected String ownermberno;
|
||||
|
||||
/**
|
||||
* levystdde 속성의 값을 가져옵니다.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getLEVYSTDDE() {
|
||||
return levystdde;
|
||||
}
|
||||
|
||||
/**
|
||||
* levystdde 속성의 값을 설정합니다.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setLEVYSTDDE(String value) {
|
||||
this.levystdde = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* inqiresecode 속성의 값을 가져옵니다.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getINQIRESECODE() {
|
||||
return inqiresecode;
|
||||
}
|
||||
|
||||
/**
|
||||
* inqiresecode 속성의 값을 설정합니다.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setINQIRESECODE(String value) {
|
||||
this.inqiresecode = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* vhrno 속성의 값을 가져옵니다.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getVHRNO() {
|
||||
return vhrno;
|
||||
}
|
||||
|
||||
/**
|
||||
* vhrno 속성의 값을 설정합니다.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setVHRNO(String value) {
|
||||
this.vhrno = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* vin 속성의 값을 가져옵니다.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getVIN() {
|
||||
return vin;
|
||||
}
|
||||
|
||||
/**
|
||||
* vin 속성의 값을 설정합니다.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setVIN(String value) {
|
||||
this.vin = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* ownermberno 속성의 값을 가져옵니다.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getOWNERMBERNO() {
|
||||
return ownermberno;
|
||||
}
|
||||
|
||||
/**
|
||||
* ownermberno 속성의 값을 설정합니다.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setOWNERMBERNO(String value) {
|
||||
this.ownermberno = value;
|
||||
}
|
||||
|
||||
}
|
@ -1,64 +0,0 @@
|
||||
|
||||
package testserver.wsdlserver.lvisserver;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlRootElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>anonymous complex type에 대한 Java 클래스입니다.
|
||||
*
|
||||
* <p>다음 스키마 단편이 이 클래스에 포함되는 필요한 콘텐츠를 지정합니다.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType>
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="findRegBasicReturn" type="{componentNs:carregbasicinfo.reg.service.lvis/service.reg.CarRegBasicInfo}findRegBasicReturn"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "", propOrder = {
|
||||
"findRegBasicReturn"
|
||||
})
|
||||
@XmlRootElement(name = "findRegBasicResponseType")
|
||||
public class FindRegBasicResponseType {
|
||||
|
||||
@XmlElement(required = true)
|
||||
protected FindRegBasicReturn findRegBasicReturn;
|
||||
|
||||
/**
|
||||
* findRegBasicReturn 속성의 값을 가져옵니다.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link FindRegBasicReturn }
|
||||
*
|
||||
*/
|
||||
public FindRegBasicReturn getFindRegBasicReturn() {
|
||||
return findRegBasicReturn;
|
||||
}
|
||||
|
||||
/**
|
||||
* findRegBasicReturn 속성의 값을 설정합니다.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link FindRegBasicReturn }
|
||||
*
|
||||
*/
|
||||
public void setFindRegBasicReturn(FindRegBasicReturn value) {
|
||||
this.findRegBasicReturn = value;
|
||||
}
|
||||
|
||||
}
|
@ -1,97 +0,0 @@
|
||||
|
||||
package testserver.wsdlserver.lvisserver;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>findRegBasicReturn complex type에 대한 Java 클래스입니다.
|
||||
*
|
||||
* <p>다음 스키마 단편이 이 클래스에 포함되는 필요한 콘텐츠를 지정합니다.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="findRegBasicReturn">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="eaiResponse_rs" type="{componentNs:carregbasicinfo.reg.service.lvis/service.reg.CarRegBasicInfo}findRegBasicReturnEaiResponse_rsRecord" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* <element name="resultMessage" type="{types.common}ResultMessage"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "findRegBasicReturn", propOrder = {
|
||||
"eaiResponseRs",
|
||||
"resultMessage"
|
||||
})
|
||||
public class FindRegBasicReturn {
|
||||
|
||||
@XmlElement(name = "eaiResponse_rs")
|
||||
protected List<FindRegBasicReturnEaiResponseRsRecord> eaiResponseRs;
|
||||
@XmlElement(required = true)
|
||||
protected ResultMessage resultMessage;
|
||||
|
||||
/**
|
||||
* Gets the value of the eaiResponseRs property.
|
||||
*
|
||||
* <p>
|
||||
* This accessor method returns a reference to the live list,
|
||||
* not a snapshot. Therefore any modification you make to the
|
||||
* returned list will be present inside the JAXB object.
|
||||
* This is why there is not a <CODE>set</CODE> method for the eaiResponseRs property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getEaiResponseRs().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link FindRegBasicReturnEaiResponseRsRecord }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<FindRegBasicReturnEaiResponseRsRecord> getEaiResponseRs() {
|
||||
if (eaiResponseRs == null) {
|
||||
eaiResponseRs = new ArrayList<FindRegBasicReturnEaiResponseRsRecord>();
|
||||
}
|
||||
return this.eaiResponseRs;
|
||||
}
|
||||
|
||||
/**
|
||||
* resultMessage 속성의 값을 가져옵니다.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link ResultMessage }
|
||||
*
|
||||
*/
|
||||
public ResultMessage getResultMessage() {
|
||||
return resultMessage;
|
||||
}
|
||||
|
||||
/**
|
||||
* resultMessage 속성의 값을 설정합니다.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link ResultMessage }
|
||||
*
|
||||
*/
|
||||
public void setResultMessage(ResultMessage value) {
|
||||
this.resultMessage = value;
|
||||
}
|
||||
|
||||
}
|
File diff suppressed because it is too large
Load Diff
@ -1,92 +0,0 @@
|
||||
|
||||
package testserver.wsdlserver.lvisserver;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlRootElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>anonymous complex type에 대한 Java 클래스입니다.
|
||||
*
|
||||
* <p>다음 스키마 단편이 이 클래스에 포함되는 필요한 콘텐츠를 지정합니다.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType>
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="findRegBasicTestParameter" type="{componentNs:carregbasicinfo.reg.service.lvis/service.reg.CarRegBasicInfo}findRegBasicTestParameter"/>
|
||||
* <element name="requestContext" type="{types.common}WsRequestContext"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "", propOrder = {
|
||||
"findRegBasicTestParameter",
|
||||
"requestContext"
|
||||
})
|
||||
@XmlRootElement(name = "findRegBasicTest")
|
||||
public class FindRegBasicTest {
|
||||
|
||||
@XmlElement(required = true)
|
||||
protected FindRegBasicTestParameter findRegBasicTestParameter;
|
||||
@XmlElement(required = true)
|
||||
protected WsRequestContext requestContext;
|
||||
|
||||
/**
|
||||
* findRegBasicTestParameter 속성의 값을 가져옵니다.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link FindRegBasicTestParameter }
|
||||
*
|
||||
*/
|
||||
public FindRegBasicTestParameter getFindRegBasicTestParameter() {
|
||||
return findRegBasicTestParameter;
|
||||
}
|
||||
|
||||
/**
|
||||
* findRegBasicTestParameter 속성의 값을 설정합니다.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link FindRegBasicTestParameter }
|
||||
*
|
||||
*/
|
||||
public void setFindRegBasicTestParameter(FindRegBasicTestParameter value) {
|
||||
this.findRegBasicTestParameter = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* requestContext 속성의 값을 가져옵니다.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link WsRequestContext }
|
||||
*
|
||||
*/
|
||||
public WsRequestContext getRequestContext() {
|
||||
return requestContext;
|
||||
}
|
||||
|
||||
/**
|
||||
* requestContext 속성의 값을 설정합니다.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link WsRequestContext }
|
||||
*
|
||||
*/
|
||||
public void setRequestContext(WsRequestContext value) {
|
||||
this.requestContext = value;
|
||||
}
|
||||
|
||||
}
|
@ -1,69 +0,0 @@
|
||||
|
||||
package testserver.wsdlserver.lvisserver;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>findRegBasicTestParameter complex type에 대한 Java 클래스입니다.
|
||||
*
|
||||
* <p>다음 스키마 단편이 이 클래스에 포함되는 필요한 콘텐츠를 지정합니다.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="findRegBasicTestParameter">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="eaiRequest_rs" type="{componentNs:carregbasicinfo.reg.service.lvis/service.reg.CarRegBasicInfo}findRegBasicTestParameterEaiRequest_rsRecord" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "findRegBasicTestParameter", propOrder = {
|
||||
"eaiRequestRs"
|
||||
})
|
||||
public class FindRegBasicTestParameter {
|
||||
|
||||
@XmlElement(name = "eaiRequest_rs")
|
||||
protected List<FindRegBasicTestParameterEaiRequestRsRecord> eaiRequestRs;
|
||||
|
||||
/**
|
||||
* Gets the value of the eaiRequestRs property.
|
||||
*
|
||||
* <p>
|
||||
* This accessor method returns a reference to the live list,
|
||||
* not a snapshot. Therefore any modification you make to the
|
||||
* returned list will be present inside the JAXB object.
|
||||
* This is why there is not a <CODE>set</CODE> method for the eaiRequestRs property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getEaiRequestRs().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link FindRegBasicTestParameterEaiRequestRsRecord }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<FindRegBasicTestParameterEaiRequestRsRecord> getEaiRequestRs() {
|
||||
if (eaiRequestRs == null) {
|
||||
eaiRequestRs = new ArrayList<FindRegBasicTestParameterEaiRequestRsRecord>();
|
||||
}
|
||||
return this.eaiRequestRs;
|
||||
}
|
||||
|
||||
}
|
@ -1,209 +0,0 @@
|
||||
|
||||
package testserver.wsdlserver.lvisserver;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>findRegBasicTestParameterEaiRequest_rsRecord complex type에 대한 Java 클래스입니다.
|
||||
*
|
||||
* <p>다음 스키마 단편이 이 클래스에 포함되는 필요한 콘텐츠를 지정합니다.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="findRegBasicTestParameterEaiRequest_rsRecord">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="LEVY_STDDE">
|
||||
* <simpleType>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||
* <minLength value="0"/>
|
||||
* <maxLength value="128"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </element>
|
||||
* <element name="INQIRE_SE_CODE">
|
||||
* <simpleType>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||
* <minLength value="0"/>
|
||||
* <maxLength value="128"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </element>
|
||||
* <element name="VHRNO">
|
||||
* <simpleType>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||
* <minLength value="0"/>
|
||||
* <maxLength value="128"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </element>
|
||||
* <element name="VIN">
|
||||
* <simpleType>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||
* <minLength value="0"/>
|
||||
* <maxLength value="128"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </element>
|
||||
* <element name="OWNER_MBER_NO">
|
||||
* <simpleType>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||
* <minLength value="0"/>
|
||||
* <maxLength value="128"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </element>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "findRegBasicTestParameterEaiRequest_rsRecord", propOrder = {
|
||||
"levystdde",
|
||||
"inqiresecode",
|
||||
"vhrno",
|
||||
"vin",
|
||||
"ownermberno"
|
||||
})
|
||||
public class FindRegBasicTestParameterEaiRequestRsRecord {
|
||||
|
||||
@XmlElement(name = "LEVY_STDDE", required = true, nillable = true)
|
||||
protected String levystdde;
|
||||
@XmlElement(name = "INQIRE_SE_CODE", required = true, nillable = true)
|
||||
protected String inqiresecode;
|
||||
@XmlElement(name = "VHRNO", required = true, nillable = true)
|
||||
protected String vhrno;
|
||||
@XmlElement(name = "VIN", required = true, nillable = true)
|
||||
protected String vin;
|
||||
@XmlElement(name = "OWNER_MBER_NO", required = true, nillable = true)
|
||||
protected String ownermberno;
|
||||
|
||||
/**
|
||||
* levystdde 속성의 값을 가져옵니다.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getLEVYSTDDE() {
|
||||
return levystdde;
|
||||
}
|
||||
|
||||
/**
|
||||
* levystdde 속성의 값을 설정합니다.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setLEVYSTDDE(String value) {
|
||||
this.levystdde = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* inqiresecode 속성의 값을 가져옵니다.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getINQIRESECODE() {
|
||||
return inqiresecode;
|
||||
}
|
||||
|
||||
/**
|
||||
* inqiresecode 속성의 값을 설정합니다.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setINQIRESECODE(String value) {
|
||||
this.inqiresecode = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* vhrno 속성의 값을 가져옵니다.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getVHRNO() {
|
||||
return vhrno;
|
||||
}
|
||||
|
||||
/**
|
||||
* vhrno 속성의 값을 설정합니다.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setVHRNO(String value) {
|
||||
this.vhrno = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* vin 속성의 값을 가져옵니다.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getVIN() {
|
||||
return vin;
|
||||
}
|
||||
|
||||
/**
|
||||
* vin 속성의 값을 설정합니다.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setVIN(String value) {
|
||||
this.vin = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* ownermberno 속성의 값을 가져옵니다.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getOWNERMBERNO() {
|
||||
return ownermberno;
|
||||
}
|
||||
|
||||
/**
|
||||
* ownermberno 속성의 값을 설정합니다.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setOWNERMBERNO(String value) {
|
||||
this.ownermberno = value;
|
||||
}
|
||||
|
||||
}
|
@ -1,64 +0,0 @@
|
||||
|
||||
package testserver.wsdlserver.lvisserver;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlRootElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>anonymous complex type에 대한 Java 클래스입니다.
|
||||
*
|
||||
* <p>다음 스키마 단편이 이 클래스에 포함되는 필요한 콘텐츠를 지정합니다.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType>
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="findRegBasicTestReturn" type="{componentNs:carregbasicinfo.reg.service.lvis/service.reg.CarRegBasicInfo}findRegBasicTestReturn"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "", propOrder = {
|
||||
"findRegBasicTestReturn"
|
||||
})
|
||||
@XmlRootElement(name = "findRegBasicTestResponseType")
|
||||
public class FindRegBasicTestResponseType {
|
||||
|
||||
@XmlElement(required = true)
|
||||
protected FindRegBasicTestReturn findRegBasicTestReturn;
|
||||
|
||||
/**
|
||||
* findRegBasicTestReturn 속성의 값을 가져옵니다.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link FindRegBasicTestReturn }
|
||||
*
|
||||
*/
|
||||
public FindRegBasicTestReturn getFindRegBasicTestReturn() {
|
||||
return findRegBasicTestReturn;
|
||||
}
|
||||
|
||||
/**
|
||||
* findRegBasicTestReturn 속성의 값을 설정합니다.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link FindRegBasicTestReturn }
|
||||
*
|
||||
*/
|
||||
public void setFindRegBasicTestReturn(FindRegBasicTestReturn value) {
|
||||
this.findRegBasicTestReturn = value;
|
||||
}
|
||||
|
||||
}
|
@ -1,97 +0,0 @@
|
||||
|
||||
package testserver.wsdlserver.lvisserver;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>findRegBasicTestReturn complex type에 대한 Java 클래스입니다.
|
||||
*
|
||||
* <p>다음 스키마 단편이 이 클래스에 포함되는 필요한 콘텐츠를 지정합니다.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="findRegBasicTestReturn">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="eaiResponse_rs" type="{componentNs:carregbasicinfo.reg.service.lvis/service.reg.CarRegBasicInfo}findRegBasicTestReturnEaiResponse_rsRecord" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* <element name="resultMessage" type="{types.common}ResultMessage"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "findRegBasicTestReturn", propOrder = {
|
||||
"eaiResponseRs",
|
||||
"resultMessage"
|
||||
})
|
||||
public class FindRegBasicTestReturn {
|
||||
|
||||
@XmlElement(name = "eaiResponse_rs")
|
||||
protected List<FindRegBasicTestReturnEaiResponseRsRecord> eaiResponseRs;
|
||||
@XmlElement(required = true)
|
||||
protected ResultMessage resultMessage;
|
||||
|
||||
/**
|
||||
* Gets the value of the eaiResponseRs property.
|
||||
*
|
||||
* <p>
|
||||
* This accessor method returns a reference to the live list,
|
||||
* not a snapshot. Therefore any modification you make to the
|
||||
* returned list will be present inside the JAXB object.
|
||||
* This is why there is not a <CODE>set</CODE> method for the eaiResponseRs property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getEaiResponseRs().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link FindRegBasicTestReturnEaiResponseRsRecord }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<FindRegBasicTestReturnEaiResponseRsRecord> getEaiResponseRs() {
|
||||
if (eaiResponseRs == null) {
|
||||
eaiResponseRs = new ArrayList<FindRegBasicTestReturnEaiResponseRsRecord>();
|
||||
}
|
||||
return this.eaiResponseRs;
|
||||
}
|
||||
|
||||
/**
|
||||
* resultMessage 속성의 값을 가져옵니다.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link ResultMessage }
|
||||
*
|
||||
*/
|
||||
public ResultMessage getResultMessage() {
|
||||
return resultMessage;
|
||||
}
|
||||
|
||||
/**
|
||||
* resultMessage 속성의 값을 설정합니다.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link ResultMessage }
|
||||
*
|
||||
*/
|
||||
public void setResultMessage(ResultMessage value) {
|
||||
this.resultMessage = value;
|
||||
}
|
||||
|
||||
}
|
File diff suppressed because it is too large
Load Diff
@ -1,92 +0,0 @@
|
||||
|
||||
package testserver.wsdlserver.lvisserver;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlRootElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>anonymous complex type에 대한 Java 클래스입니다.
|
||||
*
|
||||
* <p>다음 스키마 단편이 이 클래스에 포함되는 필요한 콘텐츠를 지정합니다.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType>
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="findVhrnoBasicInfoCopertnOwnerParameter" type="{componentNs:carregbasicinfo.reg.service.lvis/service.reg.CarRegBasicInfo}findVhrnoBasicInfoCopertnOwnerParameter"/>
|
||||
* <element name="requestContext" type="{types.common}WsRequestContext"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "", propOrder = {
|
||||
"findVhrnoBasicInfoCopertnOwnerParameter",
|
||||
"requestContext"
|
||||
})
|
||||
@XmlRootElement(name = "findVhrnoBasicInfoCopertnOwner")
|
||||
public class FindVhrnoBasicInfoCopertnOwner {
|
||||
|
||||
@XmlElement(required = true)
|
||||
protected FindVhrnoBasicInfoCopertnOwnerParameter findVhrnoBasicInfoCopertnOwnerParameter;
|
||||
@XmlElement(required = true)
|
||||
protected WsRequestContext requestContext;
|
||||
|
||||
/**
|
||||
* findVhrnoBasicInfoCopertnOwnerParameter 속성의 값을 가져옵니다.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link FindVhrnoBasicInfoCopertnOwnerParameter }
|
||||
*
|
||||
*/
|
||||
public FindVhrnoBasicInfoCopertnOwnerParameter getFindVhrnoBasicInfoCopertnOwnerParameter() {
|
||||
return findVhrnoBasicInfoCopertnOwnerParameter;
|
||||
}
|
||||
|
||||
/**
|
||||
* findVhrnoBasicInfoCopertnOwnerParameter 속성의 값을 설정합니다.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link FindVhrnoBasicInfoCopertnOwnerParameter }
|
||||
*
|
||||
*/
|
||||
public void setFindVhrnoBasicInfoCopertnOwnerParameter(FindVhrnoBasicInfoCopertnOwnerParameter value) {
|
||||
this.findVhrnoBasicInfoCopertnOwnerParameter = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* requestContext 속성의 값을 가져옵니다.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link WsRequestContext }
|
||||
*
|
||||
*/
|
||||
public WsRequestContext getRequestContext() {
|
||||
return requestContext;
|
||||
}
|
||||
|
||||
/**
|
||||
* requestContext 속성의 값을 설정합니다.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link WsRequestContext }
|
||||
*
|
||||
*/
|
||||
public void setRequestContext(WsRequestContext value) {
|
||||
this.requestContext = value;
|
||||
}
|
||||
|
||||
}
|
@ -1,69 +0,0 @@
|
||||
|
||||
package testserver.wsdlserver.lvisserver;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>findVhrnoBasicInfoCopertnOwnerParameter complex type에 대한 Java 클래스입니다.
|
||||
*
|
||||
* <p>다음 스키마 단편이 이 클래스에 포함되는 필요한 콘텐츠를 지정합니다.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="findVhrnoBasicInfoCopertnOwnerParameter">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="eaiRequest_rs" type="{componentNs:carregbasicinfo.reg.service.lvis/service.reg.CarRegBasicInfo}findVhrnoBasicInfoCopertnOwnerParameterEaiRequest_rsRecord" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "findVhrnoBasicInfoCopertnOwnerParameter", propOrder = {
|
||||
"eaiRequestRs"
|
||||
})
|
||||
public class FindVhrnoBasicInfoCopertnOwnerParameter {
|
||||
|
||||
@XmlElement(name = "eaiRequest_rs")
|
||||
protected List<FindVhrnoBasicInfoCopertnOwnerParameterEaiRequestRsRecord> eaiRequestRs;
|
||||
|
||||
/**
|
||||
* Gets the value of the eaiRequestRs property.
|
||||
*
|
||||
* <p>
|
||||
* This accessor method returns a reference to the live list,
|
||||
* not a snapshot. Therefore any modification you make to the
|
||||
* returned list will be present inside the JAXB object.
|
||||
* This is why there is not a <CODE>set</CODE> method for the eaiRequestRs property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getEaiRequestRs().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link FindVhrnoBasicInfoCopertnOwnerParameterEaiRequestRsRecord }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<FindVhrnoBasicInfoCopertnOwnerParameterEaiRequestRsRecord> getEaiRequestRs() {
|
||||
if (eaiRequestRs == null) {
|
||||
eaiRequestRs = new ArrayList<FindVhrnoBasicInfoCopertnOwnerParameterEaiRequestRsRecord>();
|
||||
}
|
||||
return this.eaiRequestRs;
|
||||
}
|
||||
|
||||
}
|
@ -1,69 +0,0 @@
|
||||
|
||||
package testserver.wsdlserver.lvisserver;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>findVhrnoBasicInfoCopertnOwnerParameterEaiRequest_rsRecord complex type에 대한 Java 클래스입니다.
|
||||
*
|
||||
* <p>다음 스키마 단편이 이 클래스에 포함되는 필요한 콘텐츠를 지정합니다.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="findVhrnoBasicInfoCopertnOwnerParameterEaiRequest_rsRecord">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="VHRNO">
|
||||
* <simpleType>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||
* <minLength value="0"/>
|
||||
* <maxLength value="128"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </element>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "findVhrnoBasicInfoCopertnOwnerParameterEaiRequest_rsRecord", propOrder = {
|
||||
"vhrno"
|
||||
})
|
||||
public class FindVhrnoBasicInfoCopertnOwnerParameterEaiRequestRsRecord {
|
||||
|
||||
@XmlElement(name = "VHRNO", required = true, nillable = true)
|
||||
protected String vhrno;
|
||||
|
||||
/**
|
||||
* vhrno 속성의 값을 가져옵니다.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getVHRNO() {
|
||||
return vhrno;
|
||||
}
|
||||
|
||||
/**
|
||||
* vhrno 속성의 값을 설정합니다.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setVHRNO(String value) {
|
||||
this.vhrno = value;
|
||||
}
|
||||
|
||||
}
|
@ -1,64 +0,0 @@
|
||||
|
||||
package testserver.wsdlserver.lvisserver;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlRootElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>anonymous complex type에 대한 Java 클래스입니다.
|
||||
*
|
||||
* <p>다음 스키마 단편이 이 클래스에 포함되는 필요한 콘텐츠를 지정합니다.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType>
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="findVhrnoBasicInfoCopertnOwnerReturn" type="{componentNs:carregbasicinfo.reg.service.lvis/service.reg.CarRegBasicInfo}findVhrnoBasicInfoCopertnOwnerReturn"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "", propOrder = {
|
||||
"findVhrnoBasicInfoCopertnOwnerReturn"
|
||||
})
|
||||
@XmlRootElement(name = "findVhrnoBasicInfoCopertnOwnerResponseType")
|
||||
public class FindVhrnoBasicInfoCopertnOwnerResponseType {
|
||||
|
||||
@XmlElement(required = true)
|
||||
protected FindVhrnoBasicInfoCopertnOwnerReturn findVhrnoBasicInfoCopertnOwnerReturn;
|
||||
|
||||
/**
|
||||
* findVhrnoBasicInfoCopertnOwnerReturn 속성의 값을 가져옵니다.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link FindVhrnoBasicInfoCopertnOwnerReturn }
|
||||
*
|
||||
*/
|
||||
public FindVhrnoBasicInfoCopertnOwnerReturn getFindVhrnoBasicInfoCopertnOwnerReturn() {
|
||||
return findVhrnoBasicInfoCopertnOwnerReturn;
|
||||
}
|
||||
|
||||
/**
|
||||
* findVhrnoBasicInfoCopertnOwnerReturn 속성의 값을 설정합니다.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link FindVhrnoBasicInfoCopertnOwnerReturn }
|
||||
*
|
||||
*/
|
||||
public void setFindVhrnoBasicInfoCopertnOwnerReturn(FindVhrnoBasicInfoCopertnOwnerReturn value) {
|
||||
this.findVhrnoBasicInfoCopertnOwnerReturn = value;
|
||||
}
|
||||
|
||||
}
|
@ -1,97 +0,0 @@
|
||||
|
||||
package testserver.wsdlserver.lvisserver;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>findVhrnoBasicInfoCopertnOwnerReturn complex type에 대한 Java 클래스입니다.
|
||||
*
|
||||
* <p>다음 스키마 단편이 이 클래스에 포함되는 필요한 콘텐츠를 지정합니다.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="findVhrnoBasicInfoCopertnOwnerReturn">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="eaiResponse_rs" type="{componentNs:carregbasicinfo.reg.service.lvis/service.reg.CarRegBasicInfo}findVhrnoBasicInfoCopertnOwnerReturnEaiResponse_rsRecord" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* <element name="resultMessage" type="{types.common}ResultMessage"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "findVhrnoBasicInfoCopertnOwnerReturn", propOrder = {
|
||||
"eaiResponseRs",
|
||||
"resultMessage"
|
||||
})
|
||||
public class FindVhrnoBasicInfoCopertnOwnerReturn {
|
||||
|
||||
@XmlElement(name = "eaiResponse_rs")
|
||||
protected List<FindVhrnoBasicInfoCopertnOwnerReturnEaiResponseRsRecord> eaiResponseRs;
|
||||
@XmlElement(required = true)
|
||||
protected ResultMessage resultMessage;
|
||||
|
||||
/**
|
||||
* Gets the value of the eaiResponseRs property.
|
||||
*
|
||||
* <p>
|
||||
* This accessor method returns a reference to the live list,
|
||||
* not a snapshot. Therefore any modification you make to the
|
||||
* returned list will be present inside the JAXB object.
|
||||
* This is why there is not a <CODE>set</CODE> method for the eaiResponseRs property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getEaiResponseRs().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link FindVhrnoBasicInfoCopertnOwnerReturnEaiResponseRsRecord }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<FindVhrnoBasicInfoCopertnOwnerReturnEaiResponseRsRecord> getEaiResponseRs() {
|
||||
if (eaiResponseRs == null) {
|
||||
eaiResponseRs = new ArrayList<FindVhrnoBasicInfoCopertnOwnerReturnEaiResponseRsRecord>();
|
||||
}
|
||||
return this.eaiResponseRs;
|
||||
}
|
||||
|
||||
/**
|
||||
* resultMessage 속성의 값을 가져옵니다.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link ResultMessage }
|
||||
*
|
||||
*/
|
||||
public ResultMessage getResultMessage() {
|
||||
return resultMessage;
|
||||
}
|
||||
|
||||
/**
|
||||
* resultMessage 속성의 값을 설정합니다.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link ResultMessage }
|
||||
*
|
||||
*/
|
||||
public void setResultMessage(ResultMessage value) {
|
||||
this.resultMessage = value;
|
||||
}
|
||||
|
||||
}
|
@ -1,265 +0,0 @@
|
||||
|
||||
package testserver.wsdlserver.lvisserver;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>findVhrnoBasicInfoCopertnOwnerReturnEaiResponse_rsRecord complex type에 대한 Java 클래스입니다.
|
||||
*
|
||||
* <p>다음 스키마 단편이 이 클래스에 포함되는 필요한 콘텐츠를 지정합니다.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="findVhrnoBasicInfoCopertnOwnerReturnEaiResponse_rsRecord">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="VHRNO">
|
||||
* <simpleType>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </element>
|
||||
* <element name="MBER_NM">
|
||||
* <simpleType>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </element>
|
||||
* <element name="MBER_REGIST_NO">
|
||||
* <simpleType>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </element>
|
||||
* <element name="POSESN_QOTAR">
|
||||
* <simpleType>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </element>
|
||||
* <element name="REPRSNT_OWNER_AT">
|
||||
* <simpleType>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </element>
|
||||
* <element name="PROCESS_IMPRTY_RESN_CODE">
|
||||
* <simpleType>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </element>
|
||||
* <element name="PROCESS_IMPRTY_RESN_DTLS">
|
||||
* <simpleType>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </element>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "findVhrnoBasicInfoCopertnOwnerReturnEaiResponse_rsRecord", propOrder = {
|
||||
"vhrno",
|
||||
"mbernm",
|
||||
"mberregistno",
|
||||
"posesnqotar",
|
||||
"reprsntownerat",
|
||||
"processimprtyresncode",
|
||||
"processimprtyresndtls"
|
||||
})
|
||||
public class FindVhrnoBasicInfoCopertnOwnerReturnEaiResponseRsRecord {
|
||||
|
||||
@XmlElement(name = "VHRNO", required = true, nillable = true)
|
||||
protected String vhrno;
|
||||
@XmlElement(name = "MBER_NM", required = true, nillable = true)
|
||||
protected String mbernm;
|
||||
@XmlElement(name = "MBER_REGIST_NO", required = true, nillable = true)
|
||||
protected String mberregistno;
|
||||
@XmlElement(name = "POSESN_QOTAR", required = true, nillable = true)
|
||||
protected String posesnqotar;
|
||||
@XmlElement(name = "REPRSNT_OWNER_AT", required = true, nillable = true)
|
||||
protected String reprsntownerat;
|
||||
@XmlElement(name = "PROCESS_IMPRTY_RESN_CODE", required = true, nillable = true)
|
||||
protected String processimprtyresncode;
|
||||
@XmlElement(name = "PROCESS_IMPRTY_RESN_DTLS", required = true, nillable = true)
|
||||
protected String processimprtyresndtls;
|
||||
|
||||
/**
|
||||
* vhrno 속성의 값을 가져옵니다.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getVHRNO() {
|
||||
return vhrno;
|
||||
}
|
||||
|
||||
/**
|
||||
* vhrno 속성의 값을 설정합니다.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setVHRNO(String value) {
|
||||
this.vhrno = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* mbernm 속성의 값을 가져옵니다.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getMBERNM() {
|
||||
return mbernm;
|
||||
}
|
||||
|
||||
/**
|
||||
* mbernm 속성의 값을 설정합니다.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setMBERNM(String value) {
|
||||
this.mbernm = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* mberregistno 속성의 값을 가져옵니다.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getMBERREGISTNO() {
|
||||
return mberregistno;
|
||||
}
|
||||
|
||||
/**
|
||||
* mberregistno 속성의 값을 설정합니다.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setMBERREGISTNO(String value) {
|
||||
this.mberregistno = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* posesnqotar 속성의 값을 가져옵니다.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getPOSESNQOTAR() {
|
||||
return posesnqotar;
|
||||
}
|
||||
|
||||
/**
|
||||
* posesnqotar 속성의 값을 설정합니다.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setPOSESNQOTAR(String value) {
|
||||
this.posesnqotar = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* reprsntownerat 속성의 값을 가져옵니다.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getREPRSNTOWNERAT() {
|
||||
return reprsntownerat;
|
||||
}
|
||||
|
||||
/**
|
||||
* reprsntownerat 속성의 값을 설정합니다.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setREPRSNTOWNERAT(String value) {
|
||||
this.reprsntownerat = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* processimprtyresncode 속성의 값을 가져옵니다.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getPROCESSIMPRTYRESNCODE() {
|
||||
return processimprtyresncode;
|
||||
}
|
||||
|
||||
/**
|
||||
* processimprtyresncode 속성의 값을 설정합니다.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setPROCESSIMPRTYRESNCODE(String value) {
|
||||
this.processimprtyresncode = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* processimprtyresndtls 속성의 값을 가져옵니다.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getPROCESSIMPRTYRESNDTLS() {
|
||||
return processimprtyresndtls;
|
||||
}
|
||||
|
||||
/**
|
||||
* processimprtyresndtls 속성의 값을 설정합니다.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setPROCESSIMPRTYRESNDTLS(String value) {
|
||||
this.processimprtyresndtls = value;
|
||||
}
|
||||
|
||||
}
|
@ -1,192 +0,0 @@
|
||||
|
||||
package testserver.wsdlserver.lvisserver;
|
||||
|
||||
import javax.xml.bind.annotation.XmlRegistry;
|
||||
|
||||
|
||||
/**
|
||||
* This object contains factory methods for each
|
||||
* Java content interface and Java element interface
|
||||
* generated in the testserver.wsdlserver.lvisserver package.
|
||||
* <p>An ObjectFactory allows you to programatically
|
||||
* construct new instances of the Java representation
|
||||
* for XML content. The Java representation of XML
|
||||
* content can consist of schema derived interfaces
|
||||
* and classes representing the binding of schema
|
||||
* type definitions, element declarations and model
|
||||
* groups. Factory methods for each of these are
|
||||
* provided in this class.
|
||||
*
|
||||
*/
|
||||
@XmlRegistry
|
||||
public class ObjectFactory {
|
||||
|
||||
|
||||
/**
|
||||
* Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: testserver.wsdlserver.lvisserver
|
||||
*
|
||||
*/
|
||||
public ObjectFactory() {
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link FindRegBasic }
|
||||
*
|
||||
*/
|
||||
public FindRegBasic createFindRegBasic() {
|
||||
return new FindRegBasic();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link FindRegBasicParameter }
|
||||
*
|
||||
*/
|
||||
public FindRegBasicParameter createFindRegBasicParameter() {
|
||||
return new FindRegBasicParameter();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link WsRequestContext }
|
||||
*
|
||||
*/
|
||||
public WsRequestContext createWsRequestContext() {
|
||||
return new WsRequestContext();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link FindRegBasicResponseType }
|
||||
*
|
||||
*/
|
||||
public FindRegBasicResponseType createFindRegBasicResponseType() {
|
||||
return new FindRegBasicResponseType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link FindRegBasicReturn }
|
||||
*
|
||||
*/
|
||||
public FindRegBasicReturn createFindRegBasicReturn() {
|
||||
return new FindRegBasicReturn();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link FindRegBasicTest }
|
||||
*
|
||||
*/
|
||||
public FindRegBasicTest createFindRegBasicTest() {
|
||||
return new FindRegBasicTest();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link FindRegBasicTestParameter }
|
||||
*
|
||||
*/
|
||||
public FindRegBasicTestParameter createFindRegBasicTestParameter() {
|
||||
return new FindRegBasicTestParameter();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link FindRegBasicTestResponseType }
|
||||
*
|
||||
*/
|
||||
public FindRegBasicTestResponseType createFindRegBasicTestResponseType() {
|
||||
return new FindRegBasicTestResponseType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link FindRegBasicTestReturn }
|
||||
*
|
||||
*/
|
||||
public FindRegBasicTestReturn createFindRegBasicTestReturn() {
|
||||
return new FindRegBasicTestReturn();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link FindVhrnoBasicInfoCopertnOwner }
|
||||
*
|
||||
*/
|
||||
public FindVhrnoBasicInfoCopertnOwner createFindVhrnoBasicInfoCopertnOwner() {
|
||||
return new FindVhrnoBasicInfoCopertnOwner();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link FindVhrnoBasicInfoCopertnOwnerParameter }
|
||||
*
|
||||
*/
|
||||
public FindVhrnoBasicInfoCopertnOwnerParameter createFindVhrnoBasicInfoCopertnOwnerParameter() {
|
||||
return new FindVhrnoBasicInfoCopertnOwnerParameter();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link FindVhrnoBasicInfoCopertnOwnerResponseType }
|
||||
*
|
||||
*/
|
||||
public FindVhrnoBasicInfoCopertnOwnerResponseType createFindVhrnoBasicInfoCopertnOwnerResponseType() {
|
||||
return new FindVhrnoBasicInfoCopertnOwnerResponseType();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link FindVhrnoBasicInfoCopertnOwnerReturn }
|
||||
*
|
||||
*/
|
||||
public FindVhrnoBasicInfoCopertnOwnerReturn createFindVhrnoBasicInfoCopertnOwnerReturn() {
|
||||
return new FindVhrnoBasicInfoCopertnOwnerReturn();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link FindRegBasicParameterEaiRequestRsRecord }
|
||||
*
|
||||
*/
|
||||
public FindRegBasicParameterEaiRequestRsRecord createFindRegBasicParameterEaiRequestRsRecord() {
|
||||
return new FindRegBasicParameterEaiRequestRsRecord();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link FindRegBasicReturnEaiResponseRsRecord }
|
||||
*
|
||||
*/
|
||||
public FindRegBasicReturnEaiResponseRsRecord createFindRegBasicReturnEaiResponseRsRecord() {
|
||||
return new FindRegBasicReturnEaiResponseRsRecord();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link FindRegBasicTestParameterEaiRequestRsRecord }
|
||||
*
|
||||
*/
|
||||
public FindRegBasicTestParameterEaiRequestRsRecord createFindRegBasicTestParameterEaiRequestRsRecord() {
|
||||
return new FindRegBasicTestParameterEaiRequestRsRecord();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link FindRegBasicTestReturnEaiResponseRsRecord }
|
||||
*
|
||||
*/
|
||||
public FindRegBasicTestReturnEaiResponseRsRecord createFindRegBasicTestReturnEaiResponseRsRecord() {
|
||||
return new FindRegBasicTestReturnEaiResponseRsRecord();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link FindVhrnoBasicInfoCopertnOwnerParameterEaiRequestRsRecord }
|
||||
*
|
||||
*/
|
||||
public FindVhrnoBasicInfoCopertnOwnerParameterEaiRequestRsRecord createFindVhrnoBasicInfoCopertnOwnerParameterEaiRequestRsRecord() {
|
||||
return new FindVhrnoBasicInfoCopertnOwnerParameterEaiRequestRsRecord();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link FindVhrnoBasicInfoCopertnOwnerReturnEaiResponseRsRecord }
|
||||
*
|
||||
*/
|
||||
public FindVhrnoBasicInfoCopertnOwnerReturnEaiResponseRsRecord createFindVhrnoBasicInfoCopertnOwnerReturnEaiResponseRsRecord() {
|
||||
return new FindVhrnoBasicInfoCopertnOwnerReturnEaiResponseRsRecord();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link ResultMessage }
|
||||
*
|
||||
*/
|
||||
public ResultMessage createResultMessage() {
|
||||
return new ResultMessage();
|
||||
}
|
||||
|
||||
}
|
@ -1,323 +0,0 @@
|
||||
|
||||
package testserver.wsdlserver.lvisserver;
|
||||
|
||||
import java.math.BigInteger;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>ResultMessage complex type에 대한 Java 클래스입니다.
|
||||
*
|
||||
* <p>다음 스키마 단편이 이 클래스에 포함되는 필요한 콘텐츠를 지정합니다.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="ResultMessage">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="result">
|
||||
* <simpleType>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||
* <enumeration value="OK"/>
|
||||
* <enumeration value="FAIL"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </element>
|
||||
* <element name="messageId" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="messageName" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="messageReason" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="messageRemark" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="recordSetId" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="recordId" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="fieldId" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="affectedRowCount" type="{http://www.w3.org/2001/XMLSchema}integer"/>
|
||||
* <element name="exceptionStackTrace" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "ResultMessage", namespace = "types.common", propOrder = {
|
||||
"result",
|
||||
"messageId",
|
||||
"messageName",
|
||||
"messageReason",
|
||||
"messageRemark",
|
||||
"recordSetId",
|
||||
"recordId",
|
||||
"fieldId",
|
||||
"affectedRowCount",
|
||||
"exceptionStackTrace"
|
||||
})
|
||||
public class ResultMessage {
|
||||
|
||||
@XmlElement(required = true)
|
||||
protected String result;
|
||||
@XmlElement(required = true)
|
||||
protected String messageId;
|
||||
@XmlElement(required = true)
|
||||
protected String messageName;
|
||||
@XmlElement(required = true)
|
||||
protected String messageReason;
|
||||
@XmlElement(required = true)
|
||||
protected String messageRemark;
|
||||
@XmlElement(required = true)
|
||||
protected String recordSetId;
|
||||
@XmlElement(required = true)
|
||||
protected String recordId;
|
||||
@XmlElement(required = true)
|
||||
protected String fieldId;
|
||||
@XmlElement(required = true)
|
||||
protected BigInteger affectedRowCount;
|
||||
@XmlElement(required = true)
|
||||
protected String exceptionStackTrace;
|
||||
|
||||
/**
|
||||
* result 속성의 값을 가져옵니다.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getResult() {
|
||||
return result;
|
||||
}
|
||||
|
||||
/**
|
||||
* result 속성의 값을 설정합니다.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setResult(String value) {
|
||||
this.result = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* messageId 속성의 값을 가져옵니다.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getMessageId() {
|
||||
return messageId;
|
||||
}
|
||||
|
||||
/**
|
||||
* messageId 속성의 값을 설정합니다.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setMessageId(String value) {
|
||||
this.messageId = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* messageName 속성의 값을 가져옵니다.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getMessageName() {
|
||||
return messageName;
|
||||
}
|
||||
|
||||
/**
|
||||
* messageName 속성의 값을 설정합니다.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setMessageName(String value) {
|
||||
this.messageName = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* messageReason 속성의 값을 가져옵니다.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getMessageReason() {
|
||||
return messageReason;
|
||||
}
|
||||
|
||||
/**
|
||||
* messageReason 속성의 값을 설정합니다.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setMessageReason(String value) {
|
||||
this.messageReason = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* messageRemark 속성의 값을 가져옵니다.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getMessageRemark() {
|
||||
return messageRemark;
|
||||
}
|
||||
|
||||
/**
|
||||
* messageRemark 속성의 값을 설정합니다.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setMessageRemark(String value) {
|
||||
this.messageRemark = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* recordSetId 속성의 값을 가져옵니다.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getRecordSetId() {
|
||||
return recordSetId;
|
||||
}
|
||||
|
||||
/**
|
||||
* recordSetId 속성의 값을 설정합니다.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setRecordSetId(String value) {
|
||||
this.recordSetId = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* recordId 속성의 값을 가져옵니다.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getRecordId() {
|
||||
return recordId;
|
||||
}
|
||||
|
||||
/**
|
||||
* recordId 속성의 값을 설정합니다.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setRecordId(String value) {
|
||||
this.recordId = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* fieldId 속성의 값을 가져옵니다.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getFieldId() {
|
||||
return fieldId;
|
||||
}
|
||||
|
||||
/**
|
||||
* fieldId 속성의 값을 설정합니다.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setFieldId(String value) {
|
||||
this.fieldId = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* affectedRowCount 속성의 값을 가져옵니다.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public BigInteger getAffectedRowCount() {
|
||||
return affectedRowCount;
|
||||
}
|
||||
|
||||
/**
|
||||
* affectedRowCount 속성의 값을 설정합니다.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public void setAffectedRowCount(BigInteger value) {
|
||||
this.affectedRowCount = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* exceptionStackTrace 속성의 값을 가져옵니다.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getExceptionStackTrace() {
|
||||
return exceptionStackTrace;
|
||||
}
|
||||
|
||||
/**
|
||||
* exceptionStackTrace 속성의 값을 설정합니다.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setExceptionStackTrace(String value) {
|
||||
this.exceptionStackTrace = value;
|
||||
}
|
||||
|
||||
}
|
@ -1,44 +0,0 @@
|
||||
/**
|
||||
* Licensed to the Apache Software Foundation (ASF) under one
|
||||
* or more contributor license agreements. See the NOTICE file
|
||||
* distributed with this work for additional information
|
||||
* regarding copyright ownership. The ASF licenses this file
|
||||
* to you under the Apache License, Version 2.0 (the
|
||||
* "License"); you may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing,
|
||||
* software distributed under the License is distributed on an
|
||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
* KIND, either express or implied. See the License for the
|
||||
* specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
package testserver.wsdlserver.lvisserver;
|
||||
|
||||
import javax.xml.ws.Endpoint;
|
||||
|
||||
import org.apache.cxf.Bus;
|
||||
import org.apache.cxf.jaxws.EndpointImpl;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.context.annotation.Bean;
|
||||
import org.springframework.context.annotation.Configuration;
|
||||
|
||||
|
||||
@Configuration
|
||||
public class WebServiceConfig {
|
||||
|
||||
@Autowired
|
||||
private Bus bus;
|
||||
|
||||
|
||||
@Bean
|
||||
public Endpoint endpoint() {
|
||||
EndpointImpl endpoint = new EndpointImpl(bus, new CarRegBasicInfoImpl());
|
||||
|
||||
endpoint.publish("/WsFrontController");
|
||||
return endpoint;
|
||||
}
|
||||
}
|
@ -1,370 +0,0 @@
|
||||
|
||||
package testserver.wsdlserver.lvisserver;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>WsRequestContext complex type에 대한 Java 클래스입니다.
|
||||
*
|
||||
* <p>다음 스키마 단편이 이 클래스에 포함되는 필요한 콘텐츠를 지정합니다.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="WsRequestContext">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="info_sys_id" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="info_sys_ip" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="sigungu_code" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="charger_nm" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="charger_ihinum" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="charger_wrc_telno" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="charger_ip_adres" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="svc_id" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="enc_key" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="enc_key_group" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="enc_key_no" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="info_sys_macaddress" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "WsRequestContext", namespace = "urn:types.common", propOrder = {
|
||||
"infoSysId",
|
||||
"infoSysIp",
|
||||
"sigunguCode",
|
||||
"chargerNm",
|
||||
"chargerIhinum",
|
||||
"chargerWrcTelno",
|
||||
"chargerIpAdres",
|
||||
"svcId",
|
||||
"encKey",
|
||||
"encKeyGroup",
|
||||
"encKeyNo",
|
||||
"infoSysMacaddress"
|
||||
})
|
||||
public class WsRequestContext {
|
||||
|
||||
@XmlElement(name = "info_sys_id", required = true)
|
||||
protected String infoSysId;
|
||||
@XmlElement(name = "info_sys_ip", required = true)
|
||||
protected String infoSysIp;
|
||||
@XmlElement(name = "sigungu_code", required = true)
|
||||
protected String sigunguCode;
|
||||
@XmlElement(name = "charger_nm", required = true)
|
||||
protected String chargerNm;
|
||||
@XmlElement(name = "charger_ihinum", required = true)
|
||||
protected String chargerIhinum;
|
||||
@XmlElement(name = "charger_wrc_telno", required = true)
|
||||
protected String chargerWrcTelno;
|
||||
@XmlElement(name = "charger_ip_adres", required = true)
|
||||
protected String chargerIpAdres;
|
||||
@XmlElement(name = "svc_id", required = true)
|
||||
protected String svcId;
|
||||
@XmlElement(name = "enc_key", required = true)
|
||||
protected String encKey;
|
||||
@XmlElement(name = "enc_key_group", required = true)
|
||||
protected String encKeyGroup;
|
||||
@XmlElement(name = "enc_key_no", required = true)
|
||||
protected String encKeyNo;
|
||||
@XmlElement(name = "info_sys_macaddress", required = true)
|
||||
protected String infoSysMacaddress;
|
||||
|
||||
/**
|
||||
* infoSysId 속성의 값을 가져옵니다.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getInfoSysId() {
|
||||
return infoSysId;
|
||||
}
|
||||
|
||||
/**
|
||||
* infoSysId 속성의 값을 설정합니다.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setInfoSysId(String value) {
|
||||
this.infoSysId = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* infoSysIp 속성의 값을 가져옵니다.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getInfoSysIp() {
|
||||
return infoSysIp;
|
||||
}
|
||||
|
||||
/**
|
||||
* infoSysIp 속성의 값을 설정합니다.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setInfoSysIp(String value) {
|
||||
this.infoSysIp = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* sigunguCode 속성의 값을 가져옵니다.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getSigunguCode() {
|
||||
return sigunguCode;
|
||||
}
|
||||
|
||||
/**
|
||||
* sigunguCode 속성의 값을 설정합니다.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setSigunguCode(String value) {
|
||||
this.sigunguCode = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* chargerNm 속성의 값을 가져옵니다.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getChargerNm() {
|
||||
return chargerNm;
|
||||
}
|
||||
|
||||
/**
|
||||
* chargerNm 속성의 값을 설정합니다.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setChargerNm(String value) {
|
||||
this.chargerNm = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* chargerIhinum 속성의 값을 가져옵니다.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getChargerIhinum() {
|
||||
return chargerIhinum;
|
||||
}
|
||||
|
||||
/**
|
||||
* chargerIhinum 속성의 값을 설정합니다.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setChargerIhinum(String value) {
|
||||
this.chargerIhinum = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* chargerWrcTelno 속성의 값을 가져옵니다.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getChargerWrcTelno() {
|
||||
return chargerWrcTelno;
|
||||
}
|
||||
|
||||
/**
|
||||
* chargerWrcTelno 속성의 값을 설정합니다.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setChargerWrcTelno(String value) {
|
||||
this.chargerWrcTelno = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* chargerIpAdres 속성의 값을 가져옵니다.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getChargerIpAdres() {
|
||||
return chargerIpAdres;
|
||||
}
|
||||
|
||||
/**
|
||||
* chargerIpAdres 속성의 값을 설정합니다.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setChargerIpAdres(String value) {
|
||||
this.chargerIpAdres = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* svcId 속성의 값을 가져옵니다.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getSvcId() {
|
||||
return svcId;
|
||||
}
|
||||
|
||||
/**
|
||||
* svcId 속성의 값을 설정합니다.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setSvcId(String value) {
|
||||
this.svcId = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* encKey 속성의 값을 가져옵니다.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getEncKey() {
|
||||
return encKey;
|
||||
}
|
||||
|
||||
/**
|
||||
* encKey 속성의 값을 설정합니다.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setEncKey(String value) {
|
||||
this.encKey = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* encKeyGroup 속성의 값을 가져옵니다.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getEncKeyGroup() {
|
||||
return encKeyGroup;
|
||||
}
|
||||
|
||||
/**
|
||||
* encKeyGroup 속성의 값을 설정합니다.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setEncKeyGroup(String value) {
|
||||
this.encKeyGroup = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* encKeyNo 속성의 값을 가져옵니다.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getEncKeyNo() {
|
||||
return encKeyNo;
|
||||
}
|
||||
|
||||
/**
|
||||
* encKeyNo 속성의 값을 설정합니다.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setEncKeyNo(String value) {
|
||||
this.encKeyNo = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* infoSysMacaddress 속성의 값을 가져옵니다.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getInfoSysMacaddress() {
|
||||
return infoSysMacaddress;
|
||||
}
|
||||
|
||||
/**
|
||||
* infoSysMacaddress 속성의 값을 설정합니다.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setInfoSysMacaddress(String value) {
|
||||
this.infoSysMacaddress = value;
|
||||
}
|
||||
|
||||
}
|
@ -1,2 +0,0 @@
|
||||
@javax.xml.bind.annotation.XmlSchema(namespace = "componentNs:carregbasicinfo.reg.service.lvis/service.reg.CarRegBasicInfo", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED)
|
||||
package testserver.wsdlserver.lvisserver;
|
Loading…
Reference in New Issue