diff --git a/pom.xml b/pom.xml index a486cff2..6e435b1d 100644 --- a/pom.xml +++ b/pom.xml @@ -33,24 +33,8 @@ cokr.xit.boot xit-foundation-starter 23.04.01-SNAPSHOT - - - cokr.xit.base - xit-security - - - - - - org.apache.cxf - cxf-spring-boot-starter-jaxws - 3.3.6 - - - org.hibernate - hibernate-validator - 5.3.6.Final + diff --git a/src/main/java/cokr/xit/custom/boot/DatasourceConfig2.java b/src/main/java/cokr/xit/custom/boot/DatasourceConfig2.java deleted file mode 100644 index 3a296ec4..00000000 --- a/src/main/java/cokr/xit/custom/boot/DatasourceConfig2.java +++ /dev/null @@ -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; - -/**데이터베이스 접속 관련 설정 - * - * @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; - } -} \ No newline at end of file diff --git a/src/main/java/externalsystem/car/dao/CarMapper.java b/src/main/java/externalsystem/car/dao/CarMapper.java deleted file mode 100644 index 59793e11..00000000 --- a/src/main/java/externalsystem/car/dao/CarMapper.java +++ /dev/null @@ -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); -} diff --git a/src/main/java/testserver/wsdlserver/lvisserver/CarRegBasicInfo.java b/src/main/java/testserver/wsdlserver/lvisserver/CarRegBasicInfo.java deleted file mode 100644 index a3ef94a4..00000000 --- a/src/main/java/testserver/wsdlserver/lvisserver/CarRegBasicInfo.java +++ /dev/null @@ -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 - ); -} diff --git a/src/main/java/testserver/wsdlserver/lvisserver/CarRegBasicInfoImpl.java b/src/main/java/testserver/wsdlserver/lvisserver/CarRegBasicInfoImpl.java deleted file mode 100644 index e6338b9c..00000000 --- a/src/main/java/testserver/wsdlserver/lvisserver/CarRegBasicInfoImpl.java +++ /dev/null @@ -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; - } - - - -} diff --git a/src/main/java/testserver/wsdlserver/lvisserver/FindRegBasic.java b/src/main/java/testserver/wsdlserver/lvisserver/FindRegBasic.java deleted file mode 100644 index 49940d7b..00000000 --- a/src/main/java/testserver/wsdlserver/lvisserver/FindRegBasic.java +++ /dev/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; - - -/** - *

anonymous complex type에 대한 Java 클래스입니다. - * - *

다음 스키마 단편이 이 클래스에 포함되는 필요한 콘텐츠를 지정합니다. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/src/main/java/testserver/wsdlserver/lvisserver/FindRegBasicParameter.java b/src/main/java/testserver/wsdlserver/lvisserver/FindRegBasicParameter.java deleted file mode 100644 index c0568739..00000000 --- a/src/main/java/testserver/wsdlserver/lvisserver/FindRegBasicParameter.java +++ /dev/null @@ -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; - - -/** - *

findRegBasicParameter complex type에 대한 Java 클래스입니다. - * - *

다음 스키마 단편이 이 클래스에 포함되는 필요한 콘텐츠를 지정합니다. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "findRegBasicParameter", propOrder = { - "eaiRequestRs" -}) -public class FindRegBasicParameter { - - @XmlElement(name = "eaiRequest_rs") - protected List eaiRequestRs; - - /** - * Gets the value of the eaiRequestRs property. - * - *

- * 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 set method for the eaiRequestRs property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getEaiRequestRs().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link FindRegBasicParameterEaiRequestRsRecord } - * - * - */ - public List getEaiRequestRs() { - if (eaiRequestRs == null) { - eaiRequestRs = new ArrayList(); - } - return this.eaiRequestRs; - } - -} diff --git a/src/main/java/testserver/wsdlserver/lvisserver/FindRegBasicParameterEaiRequestRsRecord.java b/src/main/java/testserver/wsdlserver/lvisserver/FindRegBasicParameterEaiRequestRsRecord.java deleted file mode 100644 index 9ecaef4e..00000000 --- a/src/main/java/testserver/wsdlserver/lvisserver/FindRegBasicParameterEaiRequestRsRecord.java +++ /dev/null @@ -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; - - -/** - *

findRegBasicParameterEaiRequest_rsRecord complex type에 대한 Java 클래스입니다. - * - *

다음 스키마 단편이 이 클래스에 포함되는 필요한 콘텐츠를 지정합니다. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/src/main/java/testserver/wsdlserver/lvisserver/FindRegBasicResponseType.java b/src/main/java/testserver/wsdlserver/lvisserver/FindRegBasicResponseType.java deleted file mode 100644 index d717071a..00000000 --- a/src/main/java/testserver/wsdlserver/lvisserver/FindRegBasicResponseType.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type에 대한 Java 클래스입니다. - * - *

다음 스키마 단편이 이 클래스에 포함되는 필요한 콘텐츠를 지정합니다. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/src/main/java/testserver/wsdlserver/lvisserver/FindRegBasicReturn.java b/src/main/java/testserver/wsdlserver/lvisserver/FindRegBasicReturn.java deleted file mode 100644 index 0bacadc5..00000000 --- a/src/main/java/testserver/wsdlserver/lvisserver/FindRegBasicReturn.java +++ /dev/null @@ -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; - - -/** - *

findRegBasicReturn complex type에 대한 Java 클래스입니다. - * - *

다음 스키마 단편이 이 클래스에 포함되는 필요한 콘텐츠를 지정합니다. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "findRegBasicReturn", propOrder = { - "eaiResponseRs", - "resultMessage" -}) -public class FindRegBasicReturn { - - @XmlElement(name = "eaiResponse_rs") - protected List eaiResponseRs; - @XmlElement(required = true) - protected ResultMessage resultMessage; - - /** - * Gets the value of the eaiResponseRs property. - * - *

- * 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 set method for the eaiResponseRs property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getEaiResponseRs().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link FindRegBasicReturnEaiResponseRsRecord } - * - * - */ - public List getEaiResponseRs() { - if (eaiResponseRs == null) { - eaiResponseRs = new ArrayList(); - } - 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; - } - -} diff --git a/src/main/java/testserver/wsdlserver/lvisserver/FindRegBasicReturnEaiResponseRsRecord.java b/src/main/java/testserver/wsdlserver/lvisserver/FindRegBasicReturnEaiResponseRsRecord.java deleted file mode 100644 index 2331c187..00000000 --- a/src/main/java/testserver/wsdlserver/lvisserver/FindRegBasicReturnEaiResponseRsRecord.java +++ /dev/null @@ -1,2905 +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; - - -/** - *

findRegBasicReturnEaiResponse_rsRecord complex type에 대한 Java 클래스입니다. - * - *

다음 스키마 단편이 이 클래스에 포함되는 필요한 콘텐츠를 지정합니다. - * - *

- * <complexType name="findRegBasicReturnEaiResponse_rsRecord">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="PRYE">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="REGIST_DE">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="ERSR_REGIST_SE_CODE">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="ERSR_REGIST_SE_NM">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="ERSR_REGIST_DE">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="REGIST_DETAIL_CODE">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="DSPLVL">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="USE_STRNGHLD_LEGALDONG_CODE">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="USE_STRNGHLD_ADSTRD_CODE">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="USE_STRNGHLD_MNTN">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="USE_STRNGHLD_LNBR">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="USE_STRNGHLD_HO">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="USE_STRNGHLD_ADRES_NM">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="USE_STRNGHLD_ROAD_NM_CODE">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="USGSRHLD_UNDGRND_BULD_SE_CODE">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="USE_STRNGHLD_BULD_MAIN_NO">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="USE_STRNGHLD_BULD_SUB_NO">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="MBER_SE_CODE">
- *           <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_SE_NO">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="TELNO">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="OWNER_LEGALDONG_CODE">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="OWNER_ADSTRD_CODE">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="OWNER_MNTN">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="OWNER_LNBR">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="OWNER_HO">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="OWNER_ADRES_NM">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="OWNER_ROAD_NM_CODE">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="OWNER_UNDGRND_BULD_SE_CODE">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="OWNER_BULD_MAIN_NO">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="OWNER_BULD_SUB_NO">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="OWNER_ADRES_FULL">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="AFTR_VHRNO">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="USE_FUEL_CODE">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="PRPOS_SE_CODE">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="MTRS_FOM_NM">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="FRNT_VHRNO">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="VHRNO">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="VIN">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="CNM">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="VHCLE_TOT_WT">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="CAAG_ENDDE">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="CHANGE_DE">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="VHCTY_ASORT_CODE">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="VHCTY_TY_CODE">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="VHCTY_SE_CODE">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="MXMM_LDG">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="VHCTY_ASORT_NM">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="VHCTY_TY_NM">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="VHCTY_SE_NM">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="FRST_REGIST_DE">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="FOM_NM">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="ACQS_DE">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="ACQS_END_DE">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="YBL_MD">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="TRANSR_REGIST_DE">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="SPCF_REGIST_STTUS_CODE">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="COLOR_NM">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="MRTG_CO">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="SEIZR_CO">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="STMD_CO">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="NMPL_CSDY_AT">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="NMPL_CSDY_REMNR_DE">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="ORIGIN_SE_CODE">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="NMPL_STNDRD_CODE">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="ACQS_AMOUNT">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="INSPT_VALID_PD_BGNDE">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="INSPT_VALID_PD_ENDDE">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="CHCK_VALID_PD_BGNDE">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="CHCK_VALID_PD_ENDDE">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="USE_STRNGHLD_GRC_CODE">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="TKCAR_PSCAP_CO">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="SPMNNO">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="TRVL_DSTNC">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="FRST_REGIST_RQRCNO">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="VLNT_ERSR_PRVNTC_NTICE_DE">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="REGIST_INSTT_NM">
- *           <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>
- *         <element name="VIMS_PRPOS_SE_CODE">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="VIMS_VHCTY_ASORT_CODE">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="VIMS_VHCTY_TY_CODE">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="VIMS_VHCTY_SE_CODE">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="CBD_LT">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="CBD_BT">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="CBD_HG">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="FRST_MXMM_LDG">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "findRegBasicReturnEaiResponse_rsRecord", propOrder = { - "prye", - "registde", - "ersrregistsecode", - "ersrregistsenm", - "ersrregistde", - "registdetailcode", - "dsplvl", - "usestrnghldlegaldongcode", - "usestrnghldadstrdcode", - "usestrnghldmntn", - "usestrnghldlnbr", - "usestrnghldho", - "usestrnghldadresnm", - "usestrnghldroadnmcode", - "usgsrhldundgrndbuldsecode", - "usestrnghldbuldmainno", - "usestrnghldbuldsubno", - "mbersecode", - "mbernm", - "mberseno", - "telno", - "ownerlegaldongcode", - "owneradstrdcode", - "ownermntn", - "ownerlnbr", - "ownerho", - "owneradresnm", - "ownerroadnmcode", - "ownerundgrndbuldsecode", - "ownerbuldmainno", - "ownerbuldsubno", - "owneradresfull", - "aftrvhrno", - "usefuelcode", - "prpossecode", - "mtrsfomnm", - "frntvhrno", - "vhrno", - "vin", - "cnm", - "vhcletotwt", - "caagendde", - "changede", - "vhctyasortcode", - "vhctytycode", - "vhctysecode", - "mxmmldg", - "vhctyasortnm", - "vhctytynm", - "vhctysenm", - "frstregistde", - "fomnm", - "acqsde", - "acqsendde", - "yblmd", - "transrregistde", - "spcfregiststtuscode", - "colornm", - "mrtgco", - "seizrco", - "stmdco", - "nmplcsdyat", - "nmplcsdyremnrde", - "originsecode", - "nmplstndrdcode", - "acqsamount", - "insptvalidpdbgnde", - "insptvalidpdendde", - "chckvalidpdbgnde", - "chckvalidpdendde", - "usestrnghldgrccode", - "tkcarpscapco", - "spmnno", - "trvldstnc", - "frstregistrqrcno", - "vlntersrprvntcnticede", - "registinsttnm", - "processimprtyresncode", - "processimprtyresndtls", - "vimsprpossecode", - "vimsvhctyasortcode", - "vimsvhctytycode", - "vimsvhctysecode", - "cbdlt", - "cbdbt", - "cbdhg", - "frstmxmmldg" -}) -public class FindRegBasicReturnEaiResponseRsRecord { - - @XmlElement(name = "PRYE", required = true, nillable = true) - protected String prye; - @XmlElement(name = "REGIST_DE", required = true, nillable = true) - protected String registde; - @XmlElement(name = "ERSR_REGIST_SE_CODE", required = true, nillable = true) - protected String ersrregistsecode; - @XmlElement(name = "ERSR_REGIST_SE_NM", required = true, nillable = true) - protected String ersrregistsenm; - @XmlElement(name = "ERSR_REGIST_DE", required = true, nillable = true) - protected String ersrregistde; - @XmlElement(name = "REGIST_DETAIL_CODE", required = true, nillable = true) - protected String registdetailcode; - @XmlElement(name = "DSPLVL", required = true, nillable = true) - protected String dsplvl; - @XmlElement(name = "USE_STRNGHLD_LEGALDONG_CODE", required = true, nillable = true) - protected String usestrnghldlegaldongcode; - @XmlElement(name = "USE_STRNGHLD_ADSTRD_CODE", required = true, nillable = true) - protected String usestrnghldadstrdcode; - @XmlElement(name = "USE_STRNGHLD_MNTN", required = true, nillable = true) - protected String usestrnghldmntn; - @XmlElement(name = "USE_STRNGHLD_LNBR", required = true, nillable = true) - protected String usestrnghldlnbr; - @XmlElement(name = "USE_STRNGHLD_HO", required = true, nillable = true) - protected String usestrnghldho; - @XmlElement(name = "USE_STRNGHLD_ADRES_NM", required = true, nillable = true) - protected String usestrnghldadresnm; - @XmlElement(name = "USE_STRNGHLD_ROAD_NM_CODE", required = true, nillable = true) - protected String usestrnghldroadnmcode; - @XmlElement(name = "USGSRHLD_UNDGRND_BULD_SE_CODE", required = true, nillable = true) - protected String usgsrhldundgrndbuldsecode; - @XmlElement(name = "USE_STRNGHLD_BULD_MAIN_NO", required = true, nillable = true) - protected String usestrnghldbuldmainno; - @XmlElement(name = "USE_STRNGHLD_BULD_SUB_NO", required = true, nillable = true) - protected String usestrnghldbuldsubno; - @XmlElement(name = "MBER_SE_CODE", required = true, nillable = true) - protected String mbersecode; - @XmlElement(name = "MBER_NM", required = true, nillable = true) - protected String mbernm; - @XmlElement(name = "MBER_SE_NO", required = true, nillable = true) - protected String mberseno; - @XmlElement(name = "TELNO", required = true, nillable = true) - protected String telno; - @XmlElement(name = "OWNER_LEGALDONG_CODE", required = true, nillable = true) - protected String ownerlegaldongcode; - @XmlElement(name = "OWNER_ADSTRD_CODE", required = true, nillable = true) - protected String owneradstrdcode; - @XmlElement(name = "OWNER_MNTN", required = true, nillable = true) - protected String ownermntn; - @XmlElement(name = "OWNER_LNBR", required = true, nillable = true) - protected String ownerlnbr; - @XmlElement(name = "OWNER_HO", required = true, nillable = true) - protected String ownerho; - @XmlElement(name = "OWNER_ADRES_NM", required = true, nillable = true) - protected String owneradresnm; - @XmlElement(name = "OWNER_ROAD_NM_CODE", required = true, nillable = true) - protected String ownerroadnmcode; - @XmlElement(name = "OWNER_UNDGRND_BULD_SE_CODE", required = true, nillable = true) - protected String ownerundgrndbuldsecode; - @XmlElement(name = "OWNER_BULD_MAIN_NO", required = true, nillable = true) - protected String ownerbuldmainno; - @XmlElement(name = "OWNER_BULD_SUB_NO", required = true, nillable = true) - protected String ownerbuldsubno; - @XmlElement(name = "OWNER_ADRES_FULL", required = true, nillable = true) - protected String owneradresfull; - @XmlElement(name = "AFTR_VHRNO", required = true, nillable = true) - protected String aftrvhrno; - @XmlElement(name = "USE_FUEL_CODE", required = true, nillable = true) - protected String usefuelcode; - @XmlElement(name = "PRPOS_SE_CODE", required = true, nillable = true) - protected String prpossecode; - @XmlElement(name = "MTRS_FOM_NM", required = true, nillable = true) - protected String mtrsfomnm; - @XmlElement(name = "FRNT_VHRNO", required = true, nillable = true) - protected String frntvhrno; - @XmlElement(name = "VHRNO", required = true, nillable = true) - protected String vhrno; - @XmlElement(name = "VIN", required = true, nillable = true) - protected String vin; - @XmlElement(name = "CNM", required = true, nillable = true) - protected String cnm; - @XmlElement(name = "VHCLE_TOT_WT", required = true, nillable = true) - protected String vhcletotwt; - @XmlElement(name = "CAAG_ENDDE", required = true, nillable = true) - protected String caagendde; - @XmlElement(name = "CHANGE_DE", required = true, nillable = true) - protected String changede; - @XmlElement(name = "VHCTY_ASORT_CODE", required = true, nillable = true) - protected String vhctyasortcode; - @XmlElement(name = "VHCTY_TY_CODE", required = true, nillable = true) - protected String vhctytycode; - @XmlElement(name = "VHCTY_SE_CODE", required = true, nillable = true) - protected String vhctysecode; - @XmlElement(name = "MXMM_LDG", required = true, nillable = true) - protected String mxmmldg; - @XmlElement(name = "VHCTY_ASORT_NM", required = true, nillable = true) - protected String vhctyasortnm; - @XmlElement(name = "VHCTY_TY_NM", required = true, nillable = true) - protected String vhctytynm; - @XmlElement(name = "VHCTY_SE_NM", required = true, nillable = true) - protected String vhctysenm; - @XmlElement(name = "FRST_REGIST_DE", required = true, nillable = true) - protected String frstregistde; - @XmlElement(name = "FOM_NM", required = true, nillable = true) - protected String fomnm; - @XmlElement(name = "ACQS_DE", required = true, nillable = true) - protected String acqsde; - @XmlElement(name = "ACQS_END_DE", required = true, nillable = true) - protected String acqsendde; - @XmlElement(name = "YBL_MD", required = true, nillable = true) - protected String yblmd; - @XmlElement(name = "TRANSR_REGIST_DE", required = true, nillable = true) - protected String transrregistde; - @XmlElement(name = "SPCF_REGIST_STTUS_CODE", required = true, nillable = true) - protected String spcfregiststtuscode; - @XmlElement(name = "COLOR_NM", required = true, nillable = true) - protected String colornm; - @XmlElement(name = "MRTG_CO", required = true, nillable = true) - protected String mrtgco; - @XmlElement(name = "SEIZR_CO", required = true, nillable = true) - protected String seizrco; - @XmlElement(name = "STMD_CO", required = true, nillable = true) - protected String stmdco; - @XmlElement(name = "NMPL_CSDY_AT", required = true, nillable = true) - protected String nmplcsdyat; - @XmlElement(name = "NMPL_CSDY_REMNR_DE", required = true, nillable = true) - protected String nmplcsdyremnrde; - @XmlElement(name = "ORIGIN_SE_CODE", required = true, nillable = true) - protected String originsecode; - @XmlElement(name = "NMPL_STNDRD_CODE", required = true, nillable = true) - protected String nmplstndrdcode; - @XmlElement(name = "ACQS_AMOUNT", required = true, nillable = true) - protected String acqsamount; - @XmlElement(name = "INSPT_VALID_PD_BGNDE", required = true, nillable = true) - protected String insptvalidpdbgnde; - @XmlElement(name = "INSPT_VALID_PD_ENDDE", required = true, nillable = true) - protected String insptvalidpdendde; - @XmlElement(name = "CHCK_VALID_PD_BGNDE", required = true, nillable = true) - protected String chckvalidpdbgnde; - @XmlElement(name = "CHCK_VALID_PD_ENDDE", required = true, nillable = true) - protected String chckvalidpdendde; - @XmlElement(name = "USE_STRNGHLD_GRC_CODE", required = true, nillable = true) - protected String usestrnghldgrccode; - @XmlElement(name = "TKCAR_PSCAP_CO", required = true, nillable = true) - protected String tkcarpscapco; - @XmlElement(name = "SPMNNO", required = true, nillable = true) - protected String spmnno; - @XmlElement(name = "TRVL_DSTNC", required = true, nillable = true) - protected String trvldstnc; - @XmlElement(name = "FRST_REGIST_RQRCNO", required = true, nillable = true) - protected String frstregistrqrcno; - @XmlElement(name = "VLNT_ERSR_PRVNTC_NTICE_DE", required = true, nillable = true) - protected String vlntersrprvntcnticede; - @XmlElement(name = "REGIST_INSTT_NM", required = true, nillable = true) - protected String registinsttnm; - @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; - @XmlElement(name = "VIMS_PRPOS_SE_CODE", required = true, nillable = true) - protected String vimsprpossecode; - @XmlElement(name = "VIMS_VHCTY_ASORT_CODE", required = true, nillable = true) - protected String vimsvhctyasortcode; - @XmlElement(name = "VIMS_VHCTY_TY_CODE", required = true, nillable = true) - protected String vimsvhctytycode; - @XmlElement(name = "VIMS_VHCTY_SE_CODE", required = true, nillable = true) - protected String vimsvhctysecode; - @XmlElement(name = "CBD_LT", required = true, nillable = true) - protected String cbdlt; - @XmlElement(name = "CBD_BT", required = true, nillable = true) - protected String cbdbt; - @XmlElement(name = "CBD_HG", required = true, nillable = true) - protected String cbdhg; - @XmlElement(name = "FRST_MXMM_LDG", required = true, nillable = true) - protected String frstmxmmldg; - - /** - * prye 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPRYE() { - return prye; - } - - /** - * prye 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPRYE(String value) { - this.prye = value; - } - - /** - * registde 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getREGISTDE() { - return registde; - } - - /** - * registde 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setREGISTDE(String value) { - this.registde = value; - } - - /** - * ersrregistsecode 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getERSRREGISTSECODE() { - return ersrregistsecode; - } - - /** - * ersrregistsecode 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setERSRREGISTSECODE(String value) { - this.ersrregistsecode = value; - } - - /** - * ersrregistsenm 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getERSRREGISTSENM() { - return ersrregistsenm; - } - - /** - * ersrregistsenm 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setERSRREGISTSENM(String value) { - this.ersrregistsenm = value; - } - - /** - * ersrregistde 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getERSRREGISTDE() { - return ersrregistde; - } - - /** - * ersrregistde 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setERSRREGISTDE(String value) { - this.ersrregistde = value; - } - - /** - * registdetailcode 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getREGISTDETAILCODE() { - return registdetailcode; - } - - /** - * registdetailcode 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setREGISTDETAILCODE(String value) { - this.registdetailcode = value; - } - - /** - * dsplvl 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDSPLVL() { - return dsplvl; - } - - /** - * dsplvl 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDSPLVL(String value) { - this.dsplvl = value; - } - - /** - * usestrnghldlegaldongcode 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getUSESTRNGHLDLEGALDONGCODE() { - return usestrnghldlegaldongcode; - } - - /** - * usestrnghldlegaldongcode 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setUSESTRNGHLDLEGALDONGCODE(String value) { - this.usestrnghldlegaldongcode = value; - } - - /** - * usestrnghldadstrdcode 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getUSESTRNGHLDADSTRDCODE() { - return usestrnghldadstrdcode; - } - - /** - * usestrnghldadstrdcode 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setUSESTRNGHLDADSTRDCODE(String value) { - this.usestrnghldadstrdcode = value; - } - - /** - * usestrnghldmntn 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getUSESTRNGHLDMNTN() { - return usestrnghldmntn; - } - - /** - * usestrnghldmntn 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setUSESTRNGHLDMNTN(String value) { - this.usestrnghldmntn = value; - } - - /** - * usestrnghldlnbr 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getUSESTRNGHLDLNBR() { - return usestrnghldlnbr; - } - - /** - * usestrnghldlnbr 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setUSESTRNGHLDLNBR(String value) { - this.usestrnghldlnbr = value; - } - - /** - * usestrnghldho 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getUSESTRNGHLDHO() { - return usestrnghldho; - } - - /** - * usestrnghldho 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setUSESTRNGHLDHO(String value) { - this.usestrnghldho = value; - } - - /** - * usestrnghldadresnm 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getUSESTRNGHLDADRESNM() { - return usestrnghldadresnm; - } - - /** - * usestrnghldadresnm 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setUSESTRNGHLDADRESNM(String value) { - this.usestrnghldadresnm = value; - } - - /** - * usestrnghldroadnmcode 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getUSESTRNGHLDROADNMCODE() { - return usestrnghldroadnmcode; - } - - /** - * usestrnghldroadnmcode 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setUSESTRNGHLDROADNMCODE(String value) { - this.usestrnghldroadnmcode = value; - } - - /** - * usgsrhldundgrndbuldsecode 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getUSGSRHLDUNDGRNDBULDSECODE() { - return usgsrhldundgrndbuldsecode; - } - - /** - * usgsrhldundgrndbuldsecode 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setUSGSRHLDUNDGRNDBULDSECODE(String value) { - this.usgsrhldundgrndbuldsecode = value; - } - - /** - * usestrnghldbuldmainno 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getUSESTRNGHLDBULDMAINNO() { - return usestrnghldbuldmainno; - } - - /** - * usestrnghldbuldmainno 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setUSESTRNGHLDBULDMAINNO(String value) { - this.usestrnghldbuldmainno = value; - } - - /** - * usestrnghldbuldsubno 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getUSESTRNGHLDBULDSUBNO() { - return usestrnghldbuldsubno; - } - - /** - * usestrnghldbuldsubno 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setUSESTRNGHLDBULDSUBNO(String value) { - this.usestrnghldbuldsubno = value; - } - - /** - * mbersecode 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMBERSECODE() { - return mbersecode; - } - - /** - * mbersecode 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMBERSECODE(String value) { - this.mbersecode = 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; - } - - /** - * mberseno 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMBERSENO() { - return mberseno; - } - - /** - * mberseno 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMBERSENO(String value) { - this.mberseno = value; - } - - /** - * telno 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTELNO() { - return telno; - } - - /** - * telno 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTELNO(String value) { - this.telno = value; - } - - /** - * ownerlegaldongcode 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOWNERLEGALDONGCODE() { - return ownerlegaldongcode; - } - - /** - * ownerlegaldongcode 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOWNERLEGALDONGCODE(String value) { - this.ownerlegaldongcode = value; - } - - /** - * owneradstrdcode 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOWNERADSTRDCODE() { - return owneradstrdcode; - } - - /** - * owneradstrdcode 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOWNERADSTRDCODE(String value) { - this.owneradstrdcode = value; - } - - /** - * ownermntn 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOWNERMNTN() { - return ownermntn; - } - - /** - * ownermntn 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOWNERMNTN(String value) { - this.ownermntn = value; - } - - /** - * ownerlnbr 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOWNERLNBR() { - return ownerlnbr; - } - - /** - * ownerlnbr 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOWNERLNBR(String value) { - this.ownerlnbr = value; - } - - /** - * ownerho 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOWNERHO() { - return ownerho; - } - - /** - * ownerho 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOWNERHO(String value) { - this.ownerho = value; - } - - /** - * owneradresnm 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOWNERADRESNM() { - return owneradresnm; - } - - /** - * owneradresnm 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOWNERADRESNM(String value) { - this.owneradresnm = value; - } - - /** - * ownerroadnmcode 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOWNERROADNMCODE() { - return ownerroadnmcode; - } - - /** - * ownerroadnmcode 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOWNERROADNMCODE(String value) { - this.ownerroadnmcode = value; - } - - /** - * ownerundgrndbuldsecode 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOWNERUNDGRNDBULDSECODE() { - return ownerundgrndbuldsecode; - } - - /** - * ownerundgrndbuldsecode 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOWNERUNDGRNDBULDSECODE(String value) { - this.ownerundgrndbuldsecode = value; - } - - /** - * ownerbuldmainno 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOWNERBULDMAINNO() { - return ownerbuldmainno; - } - - /** - * ownerbuldmainno 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOWNERBULDMAINNO(String value) { - this.ownerbuldmainno = value; - } - - /** - * ownerbuldsubno 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOWNERBULDSUBNO() { - return ownerbuldsubno; - } - - /** - * ownerbuldsubno 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOWNERBULDSUBNO(String value) { - this.ownerbuldsubno = value; - } - - /** - * owneradresfull 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOWNERADRESFULL() { - return owneradresfull; - } - - /** - * owneradresfull 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOWNERADRESFULL(String value) { - this.owneradresfull = value; - } - - /** - * aftrvhrno 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAFTRVHRNO() { - return aftrvhrno; - } - - /** - * aftrvhrno 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAFTRVHRNO(String value) { - this.aftrvhrno = value; - } - - /** - * usefuelcode 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getUSEFUELCODE() { - return usefuelcode; - } - - /** - * usefuelcode 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setUSEFUELCODE(String value) { - this.usefuelcode = value; - } - - /** - * prpossecode 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPRPOSSECODE() { - return prpossecode; - } - - /** - * prpossecode 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPRPOSSECODE(String value) { - this.prpossecode = value; - } - - /** - * mtrsfomnm 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMTRSFOMNM() { - return mtrsfomnm; - } - - /** - * mtrsfomnm 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMTRSFOMNM(String value) { - this.mtrsfomnm = value; - } - - /** - * frntvhrno 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFRNTVHRNO() { - return frntvhrno; - } - - /** - * frntvhrno 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFRNTVHRNO(String value) { - this.frntvhrno = 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; - } - - /** - * cnm 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCNM() { - return cnm; - } - - /** - * cnm 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCNM(String value) { - this.cnm = value; - } - - /** - * vhcletotwt 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVHCLETOTWT() { - return vhcletotwt; - } - - /** - * vhcletotwt 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVHCLETOTWT(String value) { - this.vhcletotwt = value; - } - - /** - * caagendde 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCAAGENDDE() { - return caagendde; - } - - /** - * caagendde 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCAAGENDDE(String value) { - this.caagendde = value; - } - - /** - * changede 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCHANGEDE() { - return changede; - } - - /** - * changede 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCHANGEDE(String value) { - this.changede = value; - } - - /** - * vhctyasortcode 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVHCTYASORTCODE() { - return vhctyasortcode; - } - - /** - * vhctyasortcode 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVHCTYASORTCODE(String value) { - this.vhctyasortcode = value; - } - - /** - * vhctytycode 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVHCTYTYCODE() { - return vhctytycode; - } - - /** - * vhctytycode 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVHCTYTYCODE(String value) { - this.vhctytycode = value; - } - - /** - * vhctysecode 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVHCTYSECODE() { - return vhctysecode; - } - - /** - * vhctysecode 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVHCTYSECODE(String value) { - this.vhctysecode = value; - } - - /** - * mxmmldg 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMXMMLDG() { - return mxmmldg; - } - - /** - * mxmmldg 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMXMMLDG(String value) { - this.mxmmldg = value; - } - - /** - * vhctyasortnm 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVHCTYASORTNM() { - return vhctyasortnm; - } - - /** - * vhctyasortnm 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVHCTYASORTNM(String value) { - this.vhctyasortnm = value; - } - - /** - * vhctytynm 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVHCTYTYNM() { - return vhctytynm; - } - - /** - * vhctytynm 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVHCTYTYNM(String value) { - this.vhctytynm = value; - } - - /** - * vhctysenm 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVHCTYSENM() { - return vhctysenm; - } - - /** - * vhctysenm 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVHCTYSENM(String value) { - this.vhctysenm = value; - } - - /** - * frstregistde 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFRSTREGISTDE() { - return frstregistde; - } - - /** - * frstregistde 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFRSTREGISTDE(String value) { - this.frstregistde = value; - } - - /** - * fomnm 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFOMNM() { - return fomnm; - } - - /** - * fomnm 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFOMNM(String value) { - this.fomnm = value; - } - - /** - * acqsde 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getACQSDE() { - return acqsde; - } - - /** - * acqsde 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setACQSDE(String value) { - this.acqsde = value; - } - - /** - * acqsendde 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getACQSENDDE() { - return acqsendde; - } - - /** - * acqsendde 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setACQSENDDE(String value) { - this.acqsendde = value; - } - - /** - * yblmd 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getYBLMD() { - return yblmd; - } - - /** - * yblmd 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setYBLMD(String value) { - this.yblmd = value; - } - - /** - * transrregistde 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTRANSRREGISTDE() { - return transrregistde; - } - - /** - * transrregistde 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTRANSRREGISTDE(String value) { - this.transrregistde = value; - } - - /** - * spcfregiststtuscode 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSPCFREGISTSTTUSCODE() { - return spcfregiststtuscode; - } - - /** - * spcfregiststtuscode 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSPCFREGISTSTTUSCODE(String value) { - this.spcfregiststtuscode = value; - } - - /** - * colornm 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCOLORNM() { - return colornm; - } - - /** - * colornm 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCOLORNM(String value) { - this.colornm = value; - } - - /** - * mrtgco 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMRTGCO() { - return mrtgco; - } - - /** - * mrtgco 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMRTGCO(String value) { - this.mrtgco = value; - } - - /** - * seizrco 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSEIZRCO() { - return seizrco; - } - - /** - * seizrco 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSEIZRCO(String value) { - this.seizrco = value; - } - - /** - * stmdco 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSTMDCO() { - return stmdco; - } - - /** - * stmdco 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSTMDCO(String value) { - this.stmdco = value; - } - - /** - * nmplcsdyat 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNMPLCSDYAT() { - return nmplcsdyat; - } - - /** - * nmplcsdyat 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNMPLCSDYAT(String value) { - this.nmplcsdyat = value; - } - - /** - * nmplcsdyremnrde 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNMPLCSDYREMNRDE() { - return nmplcsdyremnrde; - } - - /** - * nmplcsdyremnrde 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNMPLCSDYREMNRDE(String value) { - this.nmplcsdyremnrde = value; - } - - /** - * originsecode 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getORIGINSECODE() { - return originsecode; - } - - /** - * originsecode 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setORIGINSECODE(String value) { - this.originsecode = value; - } - - /** - * nmplstndrdcode 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNMPLSTNDRDCODE() { - return nmplstndrdcode; - } - - /** - * nmplstndrdcode 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNMPLSTNDRDCODE(String value) { - this.nmplstndrdcode = value; - } - - /** - * acqsamount 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getACQSAMOUNT() { - return acqsamount; - } - - /** - * acqsamount 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setACQSAMOUNT(String value) { - this.acqsamount = value; - } - - /** - * insptvalidpdbgnde 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getINSPTVALIDPDBGNDE() { - return insptvalidpdbgnde; - } - - /** - * insptvalidpdbgnde 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setINSPTVALIDPDBGNDE(String value) { - this.insptvalidpdbgnde = value; - } - - /** - * insptvalidpdendde 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getINSPTVALIDPDENDDE() { - return insptvalidpdendde; - } - - /** - * insptvalidpdendde 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setINSPTVALIDPDENDDE(String value) { - this.insptvalidpdendde = value; - } - - /** - * chckvalidpdbgnde 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCHCKVALIDPDBGNDE() { - return chckvalidpdbgnde; - } - - /** - * chckvalidpdbgnde 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCHCKVALIDPDBGNDE(String value) { - this.chckvalidpdbgnde = value; - } - - /** - * chckvalidpdendde 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCHCKVALIDPDENDDE() { - return chckvalidpdendde; - } - - /** - * chckvalidpdendde 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCHCKVALIDPDENDDE(String value) { - this.chckvalidpdendde = value; - } - - /** - * usestrnghldgrccode 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getUSESTRNGHLDGRCCODE() { - return usestrnghldgrccode; - } - - /** - * usestrnghldgrccode 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setUSESTRNGHLDGRCCODE(String value) { - this.usestrnghldgrccode = value; - } - - /** - * tkcarpscapco 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTKCARPSCAPCO() { - return tkcarpscapco; - } - - /** - * tkcarpscapco 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTKCARPSCAPCO(String value) { - this.tkcarpscapco = value; - } - - /** - * spmnno 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSPMNNO() { - return spmnno; - } - - /** - * spmnno 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSPMNNO(String value) { - this.spmnno = value; - } - - /** - * trvldstnc 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTRVLDSTNC() { - return trvldstnc; - } - - /** - * trvldstnc 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTRVLDSTNC(String value) { - this.trvldstnc = value; - } - - /** - * frstregistrqrcno 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFRSTREGISTRQRCNO() { - return frstregistrqrcno; - } - - /** - * frstregistrqrcno 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFRSTREGISTRQRCNO(String value) { - this.frstregistrqrcno = value; - } - - /** - * vlntersrprvntcnticede 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVLNTERSRPRVNTCNTICEDE() { - return vlntersrprvntcnticede; - } - - /** - * vlntersrprvntcnticede 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVLNTERSRPRVNTCNTICEDE(String value) { - this.vlntersrprvntcnticede = value; - } - - /** - * registinsttnm 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getREGISTINSTTNM() { - return registinsttnm; - } - - /** - * registinsttnm 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setREGISTINSTTNM(String value) { - this.registinsttnm = 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; - } - - /** - * vimsprpossecode 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVIMSPRPOSSECODE() { - return vimsprpossecode; - } - - /** - * vimsprpossecode 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVIMSPRPOSSECODE(String value) { - this.vimsprpossecode = value; - } - - /** - * vimsvhctyasortcode 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVIMSVHCTYASORTCODE() { - return vimsvhctyasortcode; - } - - /** - * vimsvhctyasortcode 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVIMSVHCTYASORTCODE(String value) { - this.vimsvhctyasortcode = value; - } - - /** - * vimsvhctytycode 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVIMSVHCTYTYCODE() { - return vimsvhctytycode; - } - - /** - * vimsvhctytycode 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVIMSVHCTYTYCODE(String value) { - this.vimsvhctytycode = value; - } - - /** - * vimsvhctysecode 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVIMSVHCTYSECODE() { - return vimsvhctysecode; - } - - /** - * vimsvhctysecode 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVIMSVHCTYSECODE(String value) { - this.vimsvhctysecode = value; - } - - /** - * cbdlt 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCBDLT() { - return cbdlt; - } - - /** - * cbdlt 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCBDLT(String value) { - this.cbdlt = value; - } - - /** - * cbdbt 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCBDBT() { - return cbdbt; - } - - /** - * cbdbt 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCBDBT(String value) { - this.cbdbt = value; - } - - /** - * cbdhg 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCBDHG() { - return cbdhg; - } - - /** - * cbdhg 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCBDHG(String value) { - this.cbdhg = value; - } - - /** - * frstmxmmldg 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFRSTMXMMLDG() { - return frstmxmmldg; - } - - /** - * frstmxmmldg 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFRSTMXMMLDG(String value) { - this.frstmxmmldg = value; - } - -} diff --git a/src/main/java/testserver/wsdlserver/lvisserver/FindRegBasicTest.java b/src/main/java/testserver/wsdlserver/lvisserver/FindRegBasicTest.java deleted file mode 100644 index 594ef80b..00000000 --- a/src/main/java/testserver/wsdlserver/lvisserver/FindRegBasicTest.java +++ /dev/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; - - -/** - *

anonymous complex type에 대한 Java 클래스입니다. - * - *

다음 스키마 단편이 이 클래스에 포함되는 필요한 콘텐츠를 지정합니다. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/src/main/java/testserver/wsdlserver/lvisserver/FindRegBasicTestParameter.java b/src/main/java/testserver/wsdlserver/lvisserver/FindRegBasicTestParameter.java deleted file mode 100644 index ce7d1230..00000000 --- a/src/main/java/testserver/wsdlserver/lvisserver/FindRegBasicTestParameter.java +++ /dev/null @@ -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; - - -/** - *

findRegBasicTestParameter complex type에 대한 Java 클래스입니다. - * - *

다음 스키마 단편이 이 클래스에 포함되는 필요한 콘텐츠를 지정합니다. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "findRegBasicTestParameter", propOrder = { - "eaiRequestRs" -}) -public class FindRegBasicTestParameter { - - @XmlElement(name = "eaiRequest_rs") - protected List eaiRequestRs; - - /** - * Gets the value of the eaiRequestRs property. - * - *

- * 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 set method for the eaiRequestRs property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getEaiRequestRs().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link FindRegBasicTestParameterEaiRequestRsRecord } - * - * - */ - public List getEaiRequestRs() { - if (eaiRequestRs == null) { - eaiRequestRs = new ArrayList(); - } - return this.eaiRequestRs; - } - -} diff --git a/src/main/java/testserver/wsdlserver/lvisserver/FindRegBasicTestParameterEaiRequestRsRecord.java b/src/main/java/testserver/wsdlserver/lvisserver/FindRegBasicTestParameterEaiRequestRsRecord.java deleted file mode 100644 index 34939ee8..00000000 --- a/src/main/java/testserver/wsdlserver/lvisserver/FindRegBasicTestParameterEaiRequestRsRecord.java +++ /dev/null @@ -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; - - -/** - *

findRegBasicTestParameterEaiRequest_rsRecord complex type에 대한 Java 클래스입니다. - * - *

다음 스키마 단편이 이 클래스에 포함되는 필요한 콘텐츠를 지정합니다. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/src/main/java/testserver/wsdlserver/lvisserver/FindRegBasicTestResponseType.java b/src/main/java/testserver/wsdlserver/lvisserver/FindRegBasicTestResponseType.java deleted file mode 100644 index 4190858b..00000000 --- a/src/main/java/testserver/wsdlserver/lvisserver/FindRegBasicTestResponseType.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type에 대한 Java 클래스입니다. - * - *

다음 스키마 단편이 이 클래스에 포함되는 필요한 콘텐츠를 지정합니다. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/src/main/java/testserver/wsdlserver/lvisserver/FindRegBasicTestReturn.java b/src/main/java/testserver/wsdlserver/lvisserver/FindRegBasicTestReturn.java deleted file mode 100644 index 3165c371..00000000 --- a/src/main/java/testserver/wsdlserver/lvisserver/FindRegBasicTestReturn.java +++ /dev/null @@ -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; - - -/** - *

findRegBasicTestReturn complex type에 대한 Java 클래스입니다. - * - *

다음 스키마 단편이 이 클래스에 포함되는 필요한 콘텐츠를 지정합니다. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "findRegBasicTestReturn", propOrder = { - "eaiResponseRs", - "resultMessage" -}) -public class FindRegBasicTestReturn { - - @XmlElement(name = "eaiResponse_rs") - protected List eaiResponseRs; - @XmlElement(required = true) - protected ResultMessage resultMessage; - - /** - * Gets the value of the eaiResponseRs property. - * - *

- * 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 set method for the eaiResponseRs property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getEaiResponseRs().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link FindRegBasicTestReturnEaiResponseRsRecord } - * - * - */ - public List getEaiResponseRs() { - if (eaiResponseRs == null) { - eaiResponseRs = new ArrayList(); - } - 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; - } - -} diff --git a/src/main/java/testserver/wsdlserver/lvisserver/FindRegBasicTestReturnEaiResponseRsRecord.java b/src/main/java/testserver/wsdlserver/lvisserver/FindRegBasicTestReturnEaiResponseRsRecord.java deleted file mode 100644 index 41deeed7..00000000 --- a/src/main/java/testserver/wsdlserver/lvisserver/FindRegBasicTestReturnEaiResponseRsRecord.java +++ /dev/null @@ -1,2641 +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; - - -/** - *

findRegBasicTestReturnEaiResponse_rsRecord complex type에 대한 Java 클래스입니다. - * - *

다음 스키마 단편이 이 클래스에 포함되는 필요한 콘텐츠를 지정합니다. - * - *

- * <complexType name="findRegBasicTestReturnEaiResponse_rsRecord">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="PRYE">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="REGIST_DE">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="ERSR_REGIST_SE_CODE">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="ERSR_REGIST_SE_NM">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="ERSR_REGIST_DE">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="REGIST_DETAIL_CODE">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="DSPLVL">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="USE_STRNGHLD_LEGALDONG_CODE">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="USE_STRNGHLD_ADSTRD_CODE">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="USE_STRNGHLD_MNTN">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="USE_STRNGHLD_LNBR">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="USE_STRNGHLD_HO">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="USE_STRNGHLD_ADRES_NM">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="MBER_SE_CODE">
- *           <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_SE_NO">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="TELNO">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="OWNER_LEGALDONG_CODE">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="OWNER_ADSTRD_CODE">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="OWNER_MNTN">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="OWNER_LNBR">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="OWNER_HO">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="OWNER_ADRES_NM">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="OWNER_ADRES_FULL">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="AFTR_VHRNO">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="USE_FUEL_CODE">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="PRPOS_SE_CODE">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="MTRS_FOM_NM">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="FRNT_VHRNO">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="VHRNO">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="VIN">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="CNM">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="VHCLE_TOT_WT">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="CAAG_ENDDE">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="CHANGE_DE">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="VHCTY_ASORT_CODE">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="VHCTY_TY_CODE">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="VHCTY_SE_CODE">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="MXMM_LDG">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="VHCTY_ASORT_NM">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="VHCTY_TY_NM">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="VHCTY_SE_NM">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="FRST_REGIST_DE">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="FOM_NM">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="ACQS_DE">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="ACQS_END_DE">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="YBL_MD">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="TRANSR_REGIST_DE">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="SPCF_REGIST_STTUS_CODE">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="COLOR_NM">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="MRTG_CO">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="SEIZR_CO">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="STMD_CO">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="NMPL_CSDY_AT">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="NMPL_CSDY_REMNR_DE">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="ORIGIN_SE_CODE">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="NMPL_STNDRD_CODE">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="ACQS_AMOUNT">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="INSPT_VALID_PD_BGNDE">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="INSPT_VALID_PD_ENDDE">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="CHCK_VALID_PD_BGNDE">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="CHCK_VALID_PD_ENDDE">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="USE_STRNGHLD_GRC_CODE">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="TKCAR_PSCAP_CO">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="SPMNNO">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="TRVL_DSTNC">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="FRST_REGIST_RQRCNO">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="VLNT_ERSR_PRVNTC_NTICE_DE">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="REGIST_INSTT_NM">
- *           <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>
- *         <element name="VIMS_PRPOS_SE_CODE">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="VIMS_VHCTY_ASORT_CODE">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="VIMS_VHCTY_TY_CODE">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="VIMS_VHCTY_SE_CODE">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="CBD_LT">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="CBD_BT">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="CBD_HG">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *         <element name="FRST_MXMM_LDG">
- *           <simpleType>
- *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *             </restriction>
- *           </simpleType>
- *         </element>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "findRegBasicTestReturnEaiResponse_rsRecord", propOrder = { - "prye", - "registde", - "ersrregistsecode", - "ersrregistsenm", - "ersrregistde", - "registdetailcode", - "dsplvl", - "usestrnghldlegaldongcode", - "usestrnghldadstrdcode", - "usestrnghldmntn", - "usestrnghldlnbr", - "usestrnghldho", - "usestrnghldadresnm", - "mbersecode", - "mbernm", - "mberseno", - "telno", - "ownerlegaldongcode", - "owneradstrdcode", - "ownermntn", - "ownerlnbr", - "ownerho", - "owneradresnm", - "owneradresfull", - "aftrvhrno", - "usefuelcode", - "prpossecode", - "mtrsfomnm", - "frntvhrno", - "vhrno", - "vin", - "cnm", - "vhcletotwt", - "caagendde", - "changede", - "vhctyasortcode", - "vhctytycode", - "vhctysecode", - "mxmmldg", - "vhctyasortnm", - "vhctytynm", - "vhctysenm", - "frstregistde", - "fomnm", - "acqsde", - "acqsendde", - "yblmd", - "transrregistde", - "spcfregiststtuscode", - "colornm", - "mrtgco", - "seizrco", - "stmdco", - "nmplcsdyat", - "nmplcsdyremnrde", - "originsecode", - "nmplstndrdcode", - "acqsamount", - "insptvalidpdbgnde", - "insptvalidpdendde", - "chckvalidpdbgnde", - "chckvalidpdendde", - "usestrnghldgrccode", - "tkcarpscapco", - "spmnno", - "trvldstnc", - "frstregistrqrcno", - "vlntersrprvntcnticede", - "registinsttnm", - "processimprtyresncode", - "processimprtyresndtls", - "vimsprpossecode", - "vimsvhctyasortcode", - "vimsvhctytycode", - "vimsvhctysecode", - "cbdlt", - "cbdbt", - "cbdhg", - "frstmxmmldg" -}) -public class FindRegBasicTestReturnEaiResponseRsRecord { - - @XmlElement(name = "PRYE", required = true, nillable = true) - protected String prye; - @XmlElement(name = "REGIST_DE", required = true, nillable = true) - protected String registde; - @XmlElement(name = "ERSR_REGIST_SE_CODE", required = true, nillable = true) - protected String ersrregistsecode; - @XmlElement(name = "ERSR_REGIST_SE_NM", required = true, nillable = true) - protected String ersrregistsenm; - @XmlElement(name = "ERSR_REGIST_DE", required = true, nillable = true) - protected String ersrregistde; - @XmlElement(name = "REGIST_DETAIL_CODE", required = true, nillable = true) - protected String registdetailcode; - @XmlElement(name = "DSPLVL", required = true, nillable = true) - protected String dsplvl; - @XmlElement(name = "USE_STRNGHLD_LEGALDONG_CODE", required = true, nillable = true) - protected String usestrnghldlegaldongcode; - @XmlElement(name = "USE_STRNGHLD_ADSTRD_CODE", required = true, nillable = true) - protected String usestrnghldadstrdcode; - @XmlElement(name = "USE_STRNGHLD_MNTN", required = true, nillable = true) - protected String usestrnghldmntn; - @XmlElement(name = "USE_STRNGHLD_LNBR", required = true, nillable = true) - protected String usestrnghldlnbr; - @XmlElement(name = "USE_STRNGHLD_HO", required = true, nillable = true) - protected String usestrnghldho; - @XmlElement(name = "USE_STRNGHLD_ADRES_NM", required = true, nillable = true) - protected String usestrnghldadresnm; - @XmlElement(name = "MBER_SE_CODE", required = true, nillable = true) - protected String mbersecode; - @XmlElement(name = "MBER_NM", required = true, nillable = true) - protected String mbernm; - @XmlElement(name = "MBER_SE_NO", required = true, nillable = true) - protected String mberseno; - @XmlElement(name = "TELNO", required = true, nillable = true) - protected String telno; - @XmlElement(name = "OWNER_LEGALDONG_CODE", required = true, nillable = true) - protected String ownerlegaldongcode; - @XmlElement(name = "OWNER_ADSTRD_CODE", required = true, nillable = true) - protected String owneradstrdcode; - @XmlElement(name = "OWNER_MNTN", required = true, nillable = true) - protected String ownermntn; - @XmlElement(name = "OWNER_LNBR", required = true, nillable = true) - protected String ownerlnbr; - @XmlElement(name = "OWNER_HO", required = true, nillable = true) - protected String ownerho; - @XmlElement(name = "OWNER_ADRES_NM", required = true, nillable = true) - protected String owneradresnm; - @XmlElement(name = "OWNER_ADRES_FULL", required = true, nillable = true) - protected String owneradresfull; - @XmlElement(name = "AFTR_VHRNO", required = true, nillable = true) - protected String aftrvhrno; - @XmlElement(name = "USE_FUEL_CODE", required = true, nillable = true) - protected String usefuelcode; - @XmlElement(name = "PRPOS_SE_CODE", required = true, nillable = true) - protected String prpossecode; - @XmlElement(name = "MTRS_FOM_NM", required = true, nillable = true) - protected String mtrsfomnm; - @XmlElement(name = "FRNT_VHRNO", required = true, nillable = true) - protected String frntvhrno; - @XmlElement(name = "VHRNO", required = true, nillable = true) - protected String vhrno; - @XmlElement(name = "VIN", required = true, nillable = true) - protected String vin; - @XmlElement(name = "CNM", required = true, nillable = true) - protected String cnm; - @XmlElement(name = "VHCLE_TOT_WT", required = true, nillable = true) - protected String vhcletotwt; - @XmlElement(name = "CAAG_ENDDE", required = true, nillable = true) - protected String caagendde; - @XmlElement(name = "CHANGE_DE", required = true, nillable = true) - protected String changede; - @XmlElement(name = "VHCTY_ASORT_CODE", required = true, nillable = true) - protected String vhctyasortcode; - @XmlElement(name = "VHCTY_TY_CODE", required = true, nillable = true) - protected String vhctytycode; - @XmlElement(name = "VHCTY_SE_CODE", required = true, nillable = true) - protected String vhctysecode; - @XmlElement(name = "MXMM_LDG", required = true, nillable = true) - protected String mxmmldg; - @XmlElement(name = "VHCTY_ASORT_NM", required = true, nillable = true) - protected String vhctyasortnm; - @XmlElement(name = "VHCTY_TY_NM", required = true, nillable = true) - protected String vhctytynm; - @XmlElement(name = "VHCTY_SE_NM", required = true, nillable = true) - protected String vhctysenm; - @XmlElement(name = "FRST_REGIST_DE", required = true, nillable = true) - protected String frstregistde; - @XmlElement(name = "FOM_NM", required = true, nillable = true) - protected String fomnm; - @XmlElement(name = "ACQS_DE", required = true, nillable = true) - protected String acqsde; - @XmlElement(name = "ACQS_END_DE", required = true, nillable = true) - protected String acqsendde; - @XmlElement(name = "YBL_MD", required = true, nillable = true) - protected String yblmd; - @XmlElement(name = "TRANSR_REGIST_DE", required = true, nillable = true) - protected String transrregistde; - @XmlElement(name = "SPCF_REGIST_STTUS_CODE", required = true, nillable = true) - protected String spcfregiststtuscode; - @XmlElement(name = "COLOR_NM", required = true, nillable = true) - protected String colornm; - @XmlElement(name = "MRTG_CO", required = true, nillable = true) - protected String mrtgco; - @XmlElement(name = "SEIZR_CO", required = true, nillable = true) - protected String seizrco; - @XmlElement(name = "STMD_CO", required = true, nillable = true) - protected String stmdco; - @XmlElement(name = "NMPL_CSDY_AT", required = true, nillable = true) - protected String nmplcsdyat; - @XmlElement(name = "NMPL_CSDY_REMNR_DE", required = true, nillable = true) - protected String nmplcsdyremnrde; - @XmlElement(name = "ORIGIN_SE_CODE", required = true, nillable = true) - protected String originsecode; - @XmlElement(name = "NMPL_STNDRD_CODE", required = true, nillable = true) - protected String nmplstndrdcode; - @XmlElement(name = "ACQS_AMOUNT", required = true, nillable = true) - protected String acqsamount; - @XmlElement(name = "INSPT_VALID_PD_BGNDE", required = true, nillable = true) - protected String insptvalidpdbgnde; - @XmlElement(name = "INSPT_VALID_PD_ENDDE", required = true, nillable = true) - protected String insptvalidpdendde; - @XmlElement(name = "CHCK_VALID_PD_BGNDE", required = true, nillable = true) - protected String chckvalidpdbgnde; - @XmlElement(name = "CHCK_VALID_PD_ENDDE", required = true, nillable = true) - protected String chckvalidpdendde; - @XmlElement(name = "USE_STRNGHLD_GRC_CODE", required = true, nillable = true) - protected String usestrnghldgrccode; - @XmlElement(name = "TKCAR_PSCAP_CO", required = true, nillable = true) - protected String tkcarpscapco; - @XmlElement(name = "SPMNNO", required = true, nillable = true) - protected String spmnno; - @XmlElement(name = "TRVL_DSTNC", required = true, nillable = true) - protected String trvldstnc; - @XmlElement(name = "FRST_REGIST_RQRCNO", required = true, nillable = true) - protected String frstregistrqrcno; - @XmlElement(name = "VLNT_ERSR_PRVNTC_NTICE_DE", required = true, nillable = true) - protected String vlntersrprvntcnticede; - @XmlElement(name = "REGIST_INSTT_NM", required = true, nillable = true) - protected String registinsttnm; - @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; - @XmlElement(name = "VIMS_PRPOS_SE_CODE", required = true, nillable = true) - protected String vimsprpossecode; - @XmlElement(name = "VIMS_VHCTY_ASORT_CODE", required = true, nillable = true) - protected String vimsvhctyasortcode; - @XmlElement(name = "VIMS_VHCTY_TY_CODE", required = true, nillable = true) - protected String vimsvhctytycode; - @XmlElement(name = "VIMS_VHCTY_SE_CODE", required = true, nillable = true) - protected String vimsvhctysecode; - @XmlElement(name = "CBD_LT", required = true, nillable = true) - protected String cbdlt; - @XmlElement(name = "CBD_BT", required = true, nillable = true) - protected String cbdbt; - @XmlElement(name = "CBD_HG", required = true, nillable = true) - protected String cbdhg; - @XmlElement(name = "FRST_MXMM_LDG", required = true, nillable = true) - protected String frstmxmmldg; - - /** - * prye 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPRYE() { - return prye; - } - - /** - * prye 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPRYE(String value) { - this.prye = value; - } - - /** - * registde 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getREGISTDE() { - return registde; - } - - /** - * registde 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setREGISTDE(String value) { - this.registde = value; - } - - /** - * ersrregistsecode 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getERSRREGISTSECODE() { - return ersrregistsecode; - } - - /** - * ersrregistsecode 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setERSRREGISTSECODE(String value) { - this.ersrregistsecode = value; - } - - /** - * ersrregistsenm 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getERSRREGISTSENM() { - return ersrregistsenm; - } - - /** - * ersrregistsenm 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setERSRREGISTSENM(String value) { - this.ersrregistsenm = value; - } - - /** - * ersrregistde 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getERSRREGISTDE() { - return ersrregistde; - } - - /** - * ersrregistde 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setERSRREGISTDE(String value) { - this.ersrregistde = value; - } - - /** - * registdetailcode 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getREGISTDETAILCODE() { - return registdetailcode; - } - - /** - * registdetailcode 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setREGISTDETAILCODE(String value) { - this.registdetailcode = value; - } - - /** - * dsplvl 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDSPLVL() { - return dsplvl; - } - - /** - * dsplvl 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDSPLVL(String value) { - this.dsplvl = value; - } - - /** - * usestrnghldlegaldongcode 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getUSESTRNGHLDLEGALDONGCODE() { - return usestrnghldlegaldongcode; - } - - /** - * usestrnghldlegaldongcode 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setUSESTRNGHLDLEGALDONGCODE(String value) { - this.usestrnghldlegaldongcode = value; - } - - /** - * usestrnghldadstrdcode 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getUSESTRNGHLDADSTRDCODE() { - return usestrnghldadstrdcode; - } - - /** - * usestrnghldadstrdcode 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setUSESTRNGHLDADSTRDCODE(String value) { - this.usestrnghldadstrdcode = value; - } - - /** - * usestrnghldmntn 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getUSESTRNGHLDMNTN() { - return usestrnghldmntn; - } - - /** - * usestrnghldmntn 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setUSESTRNGHLDMNTN(String value) { - this.usestrnghldmntn = value; - } - - /** - * usestrnghldlnbr 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getUSESTRNGHLDLNBR() { - return usestrnghldlnbr; - } - - /** - * usestrnghldlnbr 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setUSESTRNGHLDLNBR(String value) { - this.usestrnghldlnbr = value; - } - - /** - * usestrnghldho 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getUSESTRNGHLDHO() { - return usestrnghldho; - } - - /** - * usestrnghldho 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setUSESTRNGHLDHO(String value) { - this.usestrnghldho = value; - } - - /** - * usestrnghldadresnm 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getUSESTRNGHLDADRESNM() { - return usestrnghldadresnm; - } - - /** - * usestrnghldadresnm 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setUSESTRNGHLDADRESNM(String value) { - this.usestrnghldadresnm = value; - } - - /** - * mbersecode 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMBERSECODE() { - return mbersecode; - } - - /** - * mbersecode 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMBERSECODE(String value) { - this.mbersecode = 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; - } - - /** - * mberseno 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMBERSENO() { - return mberseno; - } - - /** - * mberseno 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMBERSENO(String value) { - this.mberseno = value; - } - - /** - * telno 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTELNO() { - return telno; - } - - /** - * telno 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTELNO(String value) { - this.telno = value; - } - - /** - * ownerlegaldongcode 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOWNERLEGALDONGCODE() { - return ownerlegaldongcode; - } - - /** - * ownerlegaldongcode 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOWNERLEGALDONGCODE(String value) { - this.ownerlegaldongcode = value; - } - - /** - * owneradstrdcode 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOWNERADSTRDCODE() { - return owneradstrdcode; - } - - /** - * owneradstrdcode 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOWNERADSTRDCODE(String value) { - this.owneradstrdcode = value; - } - - /** - * ownermntn 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOWNERMNTN() { - return ownermntn; - } - - /** - * ownermntn 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOWNERMNTN(String value) { - this.ownermntn = value; - } - - /** - * ownerlnbr 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOWNERLNBR() { - return ownerlnbr; - } - - /** - * ownerlnbr 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOWNERLNBR(String value) { - this.ownerlnbr = value; - } - - /** - * ownerho 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOWNERHO() { - return ownerho; - } - - /** - * ownerho 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOWNERHO(String value) { - this.ownerho = value; - } - - /** - * owneradresnm 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOWNERADRESNM() { - return owneradresnm; - } - - /** - * owneradresnm 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOWNERADRESNM(String value) { - this.owneradresnm = value; - } - - /** - * owneradresfull 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getOWNERADRESFULL() { - return owneradresfull; - } - - /** - * owneradresfull 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setOWNERADRESFULL(String value) { - this.owneradresfull = value; - } - - /** - * aftrvhrno 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAFTRVHRNO() { - return aftrvhrno; - } - - /** - * aftrvhrno 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAFTRVHRNO(String value) { - this.aftrvhrno = value; - } - - /** - * usefuelcode 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getUSEFUELCODE() { - return usefuelcode; - } - - /** - * usefuelcode 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setUSEFUELCODE(String value) { - this.usefuelcode = value; - } - - /** - * prpossecode 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPRPOSSECODE() { - return prpossecode; - } - - /** - * prpossecode 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPRPOSSECODE(String value) { - this.prpossecode = value; - } - - /** - * mtrsfomnm 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMTRSFOMNM() { - return mtrsfomnm; - } - - /** - * mtrsfomnm 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMTRSFOMNM(String value) { - this.mtrsfomnm = value; - } - - /** - * frntvhrno 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFRNTVHRNO() { - return frntvhrno; - } - - /** - * frntvhrno 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFRNTVHRNO(String value) { - this.frntvhrno = 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; - } - - /** - * cnm 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCNM() { - return cnm; - } - - /** - * cnm 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCNM(String value) { - this.cnm = value; - } - - /** - * vhcletotwt 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVHCLETOTWT() { - return vhcletotwt; - } - - /** - * vhcletotwt 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVHCLETOTWT(String value) { - this.vhcletotwt = value; - } - - /** - * caagendde 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCAAGENDDE() { - return caagendde; - } - - /** - * caagendde 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCAAGENDDE(String value) { - this.caagendde = value; - } - - /** - * changede 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCHANGEDE() { - return changede; - } - - /** - * changede 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCHANGEDE(String value) { - this.changede = value; - } - - /** - * vhctyasortcode 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVHCTYASORTCODE() { - return vhctyasortcode; - } - - /** - * vhctyasortcode 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVHCTYASORTCODE(String value) { - this.vhctyasortcode = value; - } - - /** - * vhctytycode 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVHCTYTYCODE() { - return vhctytycode; - } - - /** - * vhctytycode 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVHCTYTYCODE(String value) { - this.vhctytycode = value; - } - - /** - * vhctysecode 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVHCTYSECODE() { - return vhctysecode; - } - - /** - * vhctysecode 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVHCTYSECODE(String value) { - this.vhctysecode = value; - } - - /** - * mxmmldg 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMXMMLDG() { - return mxmmldg; - } - - /** - * mxmmldg 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMXMMLDG(String value) { - this.mxmmldg = value; - } - - /** - * vhctyasortnm 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVHCTYASORTNM() { - return vhctyasortnm; - } - - /** - * vhctyasortnm 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVHCTYASORTNM(String value) { - this.vhctyasortnm = value; - } - - /** - * vhctytynm 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVHCTYTYNM() { - return vhctytynm; - } - - /** - * vhctytynm 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVHCTYTYNM(String value) { - this.vhctytynm = value; - } - - /** - * vhctysenm 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVHCTYSENM() { - return vhctysenm; - } - - /** - * vhctysenm 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVHCTYSENM(String value) { - this.vhctysenm = value; - } - - /** - * frstregistde 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFRSTREGISTDE() { - return frstregistde; - } - - /** - * frstregistde 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFRSTREGISTDE(String value) { - this.frstregistde = value; - } - - /** - * fomnm 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFOMNM() { - return fomnm; - } - - /** - * fomnm 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFOMNM(String value) { - this.fomnm = value; - } - - /** - * acqsde 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getACQSDE() { - return acqsde; - } - - /** - * acqsde 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setACQSDE(String value) { - this.acqsde = value; - } - - /** - * acqsendde 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getACQSENDDE() { - return acqsendde; - } - - /** - * acqsendde 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setACQSENDDE(String value) { - this.acqsendde = value; - } - - /** - * yblmd 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getYBLMD() { - return yblmd; - } - - /** - * yblmd 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setYBLMD(String value) { - this.yblmd = value; - } - - /** - * transrregistde 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTRANSRREGISTDE() { - return transrregistde; - } - - /** - * transrregistde 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTRANSRREGISTDE(String value) { - this.transrregistde = value; - } - - /** - * spcfregiststtuscode 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSPCFREGISTSTTUSCODE() { - return spcfregiststtuscode; - } - - /** - * spcfregiststtuscode 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSPCFREGISTSTTUSCODE(String value) { - this.spcfregiststtuscode = value; - } - - /** - * colornm 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCOLORNM() { - return colornm; - } - - /** - * colornm 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCOLORNM(String value) { - this.colornm = value; - } - - /** - * mrtgco 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMRTGCO() { - return mrtgco; - } - - /** - * mrtgco 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMRTGCO(String value) { - this.mrtgco = value; - } - - /** - * seizrco 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSEIZRCO() { - return seizrco; - } - - /** - * seizrco 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSEIZRCO(String value) { - this.seizrco = value; - } - - /** - * stmdco 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSTMDCO() { - return stmdco; - } - - /** - * stmdco 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSTMDCO(String value) { - this.stmdco = value; - } - - /** - * nmplcsdyat 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNMPLCSDYAT() { - return nmplcsdyat; - } - - /** - * nmplcsdyat 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNMPLCSDYAT(String value) { - this.nmplcsdyat = value; - } - - /** - * nmplcsdyremnrde 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNMPLCSDYREMNRDE() { - return nmplcsdyremnrde; - } - - /** - * nmplcsdyremnrde 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNMPLCSDYREMNRDE(String value) { - this.nmplcsdyremnrde = value; - } - - /** - * originsecode 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getORIGINSECODE() { - return originsecode; - } - - /** - * originsecode 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setORIGINSECODE(String value) { - this.originsecode = value; - } - - /** - * nmplstndrdcode 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNMPLSTNDRDCODE() { - return nmplstndrdcode; - } - - /** - * nmplstndrdcode 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNMPLSTNDRDCODE(String value) { - this.nmplstndrdcode = value; - } - - /** - * acqsamount 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getACQSAMOUNT() { - return acqsamount; - } - - /** - * acqsamount 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setACQSAMOUNT(String value) { - this.acqsamount = value; - } - - /** - * insptvalidpdbgnde 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getINSPTVALIDPDBGNDE() { - return insptvalidpdbgnde; - } - - /** - * insptvalidpdbgnde 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setINSPTVALIDPDBGNDE(String value) { - this.insptvalidpdbgnde = value; - } - - /** - * insptvalidpdendde 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getINSPTVALIDPDENDDE() { - return insptvalidpdendde; - } - - /** - * insptvalidpdendde 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setINSPTVALIDPDENDDE(String value) { - this.insptvalidpdendde = value; - } - - /** - * chckvalidpdbgnde 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCHCKVALIDPDBGNDE() { - return chckvalidpdbgnde; - } - - /** - * chckvalidpdbgnde 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCHCKVALIDPDBGNDE(String value) { - this.chckvalidpdbgnde = value; - } - - /** - * chckvalidpdendde 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCHCKVALIDPDENDDE() { - return chckvalidpdendde; - } - - /** - * chckvalidpdendde 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCHCKVALIDPDENDDE(String value) { - this.chckvalidpdendde = value; - } - - /** - * usestrnghldgrccode 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getUSESTRNGHLDGRCCODE() { - return usestrnghldgrccode; - } - - /** - * usestrnghldgrccode 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setUSESTRNGHLDGRCCODE(String value) { - this.usestrnghldgrccode = value; - } - - /** - * tkcarpscapco 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTKCARPSCAPCO() { - return tkcarpscapco; - } - - /** - * tkcarpscapco 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTKCARPSCAPCO(String value) { - this.tkcarpscapco = value; - } - - /** - * spmnno 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSPMNNO() { - return spmnno; - } - - /** - * spmnno 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSPMNNO(String value) { - this.spmnno = value; - } - - /** - * trvldstnc 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTRVLDSTNC() { - return trvldstnc; - } - - /** - * trvldstnc 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTRVLDSTNC(String value) { - this.trvldstnc = value; - } - - /** - * frstregistrqrcno 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFRSTREGISTRQRCNO() { - return frstregistrqrcno; - } - - /** - * frstregistrqrcno 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFRSTREGISTRQRCNO(String value) { - this.frstregistrqrcno = value; - } - - /** - * vlntersrprvntcnticede 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVLNTERSRPRVNTCNTICEDE() { - return vlntersrprvntcnticede; - } - - /** - * vlntersrprvntcnticede 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVLNTERSRPRVNTCNTICEDE(String value) { - this.vlntersrprvntcnticede = value; - } - - /** - * registinsttnm 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getREGISTINSTTNM() { - return registinsttnm; - } - - /** - * registinsttnm 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setREGISTINSTTNM(String value) { - this.registinsttnm = 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; - } - - /** - * vimsprpossecode 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVIMSPRPOSSECODE() { - return vimsprpossecode; - } - - /** - * vimsprpossecode 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVIMSPRPOSSECODE(String value) { - this.vimsprpossecode = value; - } - - /** - * vimsvhctyasortcode 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVIMSVHCTYASORTCODE() { - return vimsvhctyasortcode; - } - - /** - * vimsvhctyasortcode 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVIMSVHCTYASORTCODE(String value) { - this.vimsvhctyasortcode = value; - } - - /** - * vimsvhctytycode 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVIMSVHCTYTYCODE() { - return vimsvhctytycode; - } - - /** - * vimsvhctytycode 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVIMSVHCTYTYCODE(String value) { - this.vimsvhctytycode = value; - } - - /** - * vimsvhctysecode 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getVIMSVHCTYSECODE() { - return vimsvhctysecode; - } - - /** - * vimsvhctysecode 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setVIMSVHCTYSECODE(String value) { - this.vimsvhctysecode = value; - } - - /** - * cbdlt 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCBDLT() { - return cbdlt; - } - - /** - * cbdlt 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCBDLT(String value) { - this.cbdlt = value; - } - - /** - * cbdbt 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCBDBT() { - return cbdbt; - } - - /** - * cbdbt 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCBDBT(String value) { - this.cbdbt = value; - } - - /** - * cbdhg 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCBDHG() { - return cbdhg; - } - - /** - * cbdhg 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCBDHG(String value) { - this.cbdhg = value; - } - - /** - * frstmxmmldg 속성의 값을 가져옵니다. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFRSTMXMMLDG() { - return frstmxmmldg; - } - - /** - * frstmxmmldg 속성의 값을 설정합니다. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFRSTMXMMLDG(String value) { - this.frstmxmmldg = value; - } - -} diff --git a/src/main/java/testserver/wsdlserver/lvisserver/FindVhrnoBasicInfoCopertnOwner.java b/src/main/java/testserver/wsdlserver/lvisserver/FindVhrnoBasicInfoCopertnOwner.java deleted file mode 100644 index ba092584..00000000 --- a/src/main/java/testserver/wsdlserver/lvisserver/FindVhrnoBasicInfoCopertnOwner.java +++ /dev/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; - - -/** - *

anonymous complex type에 대한 Java 클래스입니다. - * - *

다음 스키마 단편이 이 클래스에 포함되는 필요한 콘텐츠를 지정합니다. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/src/main/java/testserver/wsdlserver/lvisserver/FindVhrnoBasicInfoCopertnOwnerParameter.java b/src/main/java/testserver/wsdlserver/lvisserver/FindVhrnoBasicInfoCopertnOwnerParameter.java deleted file mode 100644 index 3221cc28..00000000 --- a/src/main/java/testserver/wsdlserver/lvisserver/FindVhrnoBasicInfoCopertnOwnerParameter.java +++ /dev/null @@ -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; - - -/** - *

findVhrnoBasicInfoCopertnOwnerParameter complex type에 대한 Java 클래스입니다. - * - *

다음 스키마 단편이 이 클래스에 포함되는 필요한 콘텐츠를 지정합니다. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "findVhrnoBasicInfoCopertnOwnerParameter", propOrder = { - "eaiRequestRs" -}) -public class FindVhrnoBasicInfoCopertnOwnerParameter { - - @XmlElement(name = "eaiRequest_rs") - protected List eaiRequestRs; - - /** - * Gets the value of the eaiRequestRs property. - * - *

- * 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 set method for the eaiRequestRs property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getEaiRequestRs().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link FindVhrnoBasicInfoCopertnOwnerParameterEaiRequestRsRecord } - * - * - */ - public List getEaiRequestRs() { - if (eaiRequestRs == null) { - eaiRequestRs = new ArrayList(); - } - return this.eaiRequestRs; - } - -} diff --git a/src/main/java/testserver/wsdlserver/lvisserver/FindVhrnoBasicInfoCopertnOwnerParameterEaiRequestRsRecord.java b/src/main/java/testserver/wsdlserver/lvisserver/FindVhrnoBasicInfoCopertnOwnerParameterEaiRequestRsRecord.java deleted file mode 100644 index 74a2371f..00000000 --- a/src/main/java/testserver/wsdlserver/lvisserver/FindVhrnoBasicInfoCopertnOwnerParameterEaiRequestRsRecord.java +++ /dev/null @@ -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; - - -/** - *

findVhrnoBasicInfoCopertnOwnerParameterEaiRequest_rsRecord complex type에 대한 Java 클래스입니다. - * - *

다음 스키마 단편이 이 클래스에 포함되는 필요한 콘텐츠를 지정합니다. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/src/main/java/testserver/wsdlserver/lvisserver/FindVhrnoBasicInfoCopertnOwnerResponseType.java b/src/main/java/testserver/wsdlserver/lvisserver/FindVhrnoBasicInfoCopertnOwnerResponseType.java deleted file mode 100644 index 3c4b3d40..00000000 --- a/src/main/java/testserver/wsdlserver/lvisserver/FindVhrnoBasicInfoCopertnOwnerResponseType.java +++ /dev/null @@ -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; - - -/** - *

anonymous complex type에 대한 Java 클래스입니다. - * - *

다음 스키마 단편이 이 클래스에 포함되는 필요한 콘텐츠를 지정합니다. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/src/main/java/testserver/wsdlserver/lvisserver/FindVhrnoBasicInfoCopertnOwnerReturn.java b/src/main/java/testserver/wsdlserver/lvisserver/FindVhrnoBasicInfoCopertnOwnerReturn.java deleted file mode 100644 index 1620f03b..00000000 --- a/src/main/java/testserver/wsdlserver/lvisserver/FindVhrnoBasicInfoCopertnOwnerReturn.java +++ /dev/null @@ -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; - - -/** - *

findVhrnoBasicInfoCopertnOwnerReturn complex type에 대한 Java 클래스입니다. - * - *

다음 스키마 단편이 이 클래스에 포함되는 필요한 콘텐츠를 지정합니다. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "findVhrnoBasicInfoCopertnOwnerReturn", propOrder = { - "eaiResponseRs", - "resultMessage" -}) -public class FindVhrnoBasicInfoCopertnOwnerReturn { - - @XmlElement(name = "eaiResponse_rs") - protected List eaiResponseRs; - @XmlElement(required = true) - protected ResultMessage resultMessage; - - /** - * Gets the value of the eaiResponseRs property. - * - *

- * 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 set method for the eaiResponseRs property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getEaiResponseRs().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link FindVhrnoBasicInfoCopertnOwnerReturnEaiResponseRsRecord } - * - * - */ - public List getEaiResponseRs() { - if (eaiResponseRs == null) { - eaiResponseRs = new ArrayList(); - } - 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; - } - -} diff --git a/src/main/java/testserver/wsdlserver/lvisserver/FindVhrnoBasicInfoCopertnOwnerReturnEaiResponseRsRecord.java b/src/main/java/testserver/wsdlserver/lvisserver/FindVhrnoBasicInfoCopertnOwnerReturnEaiResponseRsRecord.java deleted file mode 100644 index d09eabc6..00000000 --- a/src/main/java/testserver/wsdlserver/lvisserver/FindVhrnoBasicInfoCopertnOwnerReturnEaiResponseRsRecord.java +++ /dev/null @@ -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; - - -/** - *

findVhrnoBasicInfoCopertnOwnerReturnEaiResponse_rsRecord complex type에 대한 Java 클래스입니다. - * - *

다음 스키마 단편이 이 클래스에 포함되는 필요한 콘텐츠를 지정합니다. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/src/main/java/testserver/wsdlserver/lvisserver/ObjectFactory.java b/src/main/java/testserver/wsdlserver/lvisserver/ObjectFactory.java deleted file mode 100644 index 436d4e4d..00000000 --- a/src/main/java/testserver/wsdlserver/lvisserver/ObjectFactory.java +++ /dev/null @@ -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. - *

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(); - } - -} diff --git a/src/main/java/testserver/wsdlserver/lvisserver/ResultMessage.java b/src/main/java/testserver/wsdlserver/lvisserver/ResultMessage.java deleted file mode 100644 index 4f433963..00000000 --- a/src/main/java/testserver/wsdlserver/lvisserver/ResultMessage.java +++ /dev/null @@ -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; - - -/** - *

ResultMessage complex type에 대한 Java 클래스입니다. - * - *

다음 스키마 단편이 이 클래스에 포함되는 필요한 콘텐츠를 지정합니다. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/src/main/java/testserver/wsdlserver/lvisserver/WebServiceConfig.java b/src/main/java/testserver/wsdlserver/lvisserver/WebServiceConfig.java deleted file mode 100644 index 0f799b69..00000000 --- a/src/main/java/testserver/wsdlserver/lvisserver/WebServiceConfig.java +++ /dev/null @@ -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; - } -} diff --git a/src/main/java/testserver/wsdlserver/lvisserver/WsRequestContext.java b/src/main/java/testserver/wsdlserver/lvisserver/WsRequestContext.java deleted file mode 100644 index 5dde2614..00000000 --- a/src/main/java/testserver/wsdlserver/lvisserver/WsRequestContext.java +++ /dev/null @@ -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; - - -/** - *

WsRequestContext complex type에 대한 Java 클래스입니다. - * - *

다음 스키마 단편이 이 클래스에 포함되는 필요한 콘텐츠를 지정합니다. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/src/main/java/testserver/wsdlserver/lvisserver/package-info.java b/src/main/java/testserver/wsdlserver/lvisserver/package-info.java deleted file mode 100644 index c0c4f1b4..00000000 --- a/src/main/java/testserver/wsdlserver/lvisserver/package-info.java +++ /dev/null @@ -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; diff --git a/src/main/resources/application.yml b/src/main/resources/application.yml index 97ef71b8..536eede6 100644 --- a/src/main/resources/application.yml +++ b/src/main/resources/application.yml @@ -22,23 +22,11 @@ spring: username: fimsweb password: fimsweb!@ auto-commit: false - externaldatasource: - hikari: - driver-class-name: net.sf.log4jdbc.sql.jdbcapi.DriverSpy - jdbc-url: jdbc:log4jdbc:mariadb://211.119.124.9:4407/lbj?useUnicode=true&characterEncoding=utf8&serverTimezone=Asia/Seoul&useSSL=false&autocommit=false - username: fimsweb - password: fimsweb!@ - auto-commit: false mvc: static-path-pattern: /resources/**,/files/** web: resources: static-locations: /resources/,file:files/ - -cxf: - path: /lvis/services - jaxrs: - component-scan: true messageSource: basenames: