diff --git a/pom.xml b/pom.xml index a486cff2..e8c1fa23 100644 --- a/pom.xml +++ b/pom.xml @@ -31,27 +31,15 @@ cokr.xit.boot - xit-foundation-starter + xit-base-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 + org.mariadb.jdbc + mariadb-java-client + runtime - diff --git a/src/main/java/cokr/xit/TsApplication.java b/src/main/java/cokr/xit/TsApplication.java index ebb29847..0f4f21f7 100644 --- a/src/main/java/cokr/xit/TsApplication.java +++ b/src/main/java/cokr/xit/TsApplication.java @@ -3,10 +3,10 @@ package cokr.xit; import org.springframework.boot.SpringApplication; import org.springframework.context.annotation.ImportResource; -import cokr.xit.foundation.boot.FoundationApplication; +import cokr.xit.base.boot.XitBaseApplication; @ImportResource("classpath:spring/context-*.xml") -public class TsApplication extends FoundationApplication { +public class TsApplication extends XitBaseApplication { public static void main(String[] args) { SpringApplication.run(TsApplication.class, args); 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/cokr/xit/fims/base/ActionGroupController.java b/src/main/java/cokr/xit/fims/base/ActionGroupController.java new file mode 100644 index 00000000..b369fde3 --- /dev/null +++ b/src/main/java/cokr/xit/fims/base/ActionGroupController.java @@ -0,0 +1,6 @@ +package cokr.xit.fims.base; + +import org.springframework.stereotype.Controller; + +@Controller +public class ActionGroupController extends cokr.xit.base.security.access.web.ActionGroupController {} \ No newline at end of file diff --git a/src/main/java/cokr/xit/fims/base/AuthorityController.java b/src/main/java/cokr/xit/fims/base/AuthorityController.java new file mode 100644 index 00000000..93f1b5ff --- /dev/null +++ b/src/main/java/cokr/xit/fims/base/AuthorityController.java @@ -0,0 +1,6 @@ +package cokr.xit.fims.base; + +import org.springframework.stereotype.Controller; + +@Controller +public class AuthorityController extends cokr.xit.base.security.access.web.AuthorityController {} \ No newline at end of file diff --git a/src/main/java/cokr/xit/fims/base/CodeController.java b/src/main/java/cokr/xit/fims/base/CodeController.java new file mode 100644 index 00000000..d55da1ae --- /dev/null +++ b/src/main/java/cokr/xit/fims/base/CodeController.java @@ -0,0 +1,6 @@ +package cokr.xit.fims.base; + +import org.springframework.stereotype.Controller; + +@Controller +public class CodeController extends cokr.xit.base.code.web.CodeController {} \ No newline at end of file diff --git a/src/main/java/cokr/xit/fims/base/FileController.java b/src/main/java/cokr/xit/fims/base/FileController.java new file mode 100644 index 00000000..5531a2c3 --- /dev/null +++ b/src/main/java/cokr/xit/fims/base/FileController.java @@ -0,0 +1,173 @@ +package cokr.xit.fims.base; + +import java.io.File; +import java.io.IOException; +import java.io.InputStream; +import java.io.OutputStream; +import java.io.StringWriter; +import java.net.URISyntaxException; +import java.net.URLDecoder; +import java.util.regex.Matcher; + +import javax.annotation.Resource; +import javax.servlet.http.HttpServletRequest; +import javax.servlet.http.HttpServletResponse; +import javax.xml.parsers.DocumentBuilder; +import javax.xml.parsers.DocumentBuilderFactory; +import javax.xml.parsers.ParserConfigurationException; +import javax.xml.transform.OutputKeys; +import javax.xml.transform.Transformer; +import javax.xml.transform.TransformerFactory; +import javax.xml.transform.dom.DOMSource; +import javax.xml.transform.stream.StreamResult; + +import org.springframework.core.io.ClassPathResource; +import org.springframework.http.HttpHeaders; +import org.springframework.stereotype.Controller; +import org.springframework.web.bind.annotation.GetMapping; +import org.springframework.web.servlet.ModelAndView; +import org.w3c.dom.Document; +import org.w3c.dom.Element; +import org.w3c.dom.NamedNodeMap; +import org.w3c.dom.Node; +import org.w3c.dom.NodeList; +import org.xml.sax.SAXException; + +import cokr.xit.base.file.dao.FileMapper; +import cokr.xit.base.file.service.FileQuery; +import cokr.xit.base.file.service.bean.FileBean; + +@Controller +public class FileController extends cokr.xit.base.file.web.FileController { + @Resource(name = "fileMapper") + private FileMapper fileMapper; + + @Resource(name="fileBean") + private FileBean fileBean; + + @Override + public ModelAndView getFileList(FileQuery req) { + return setCollectionInfo( + new ModelAndView("jsonView"), + fileService().getFileList(req), + "file" + ); + } + + /** 메뉴얼을 다운로드한다. + * @return 메뉴얼 파일 + * @throws Exception + */ + @GetMapping(name = "메뉴얼 다운로드", value = "/downloadMenual.do") + public ModelAndView downloadMenual() throws Exception { + ModelAndView mav = new ModelAndView("downloadView"); + + String filePath = ("menual/메뉴얼.pptx"); + ClassPathResource cps = new ClassPathResource(filePath); + InputStream menualIS = cps.getInputStream(); + + mav.addObject("file", menualIS); + mav.addObject("filename", "메뉴얼.pptx"); + mav.addObject("contentType", "application/vnd.openxmlformats-officedocument.presentationml.presentation"); + mav.addObject("length", menualIS.available()); + + return mav; + } + + + @GetMapping(name = "SVG 이미지 파일 색상 변경", value = "/modifySvg/**") + public void modifySvg(HttpServletRequest request, HttpServletResponse response) throws URISyntaxException, IOException, ParserConfigurationException, SAXException { + String requestURI = request.getRequestURI().toString(); + + String filepath = requestURI.split("modifySvg")[1]; + filepath = URLDecoder.decode(filepath, "UTF-8"); + filepath = filepath.replaceAll("/", Matcher.quoteReplacement(File.separator)); + filepath = "svg" + filepath; + + ClassPathResource resource = new ClassPathResource(filepath); + InputStream is = resource.getInputStream(); + + DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance(); + DocumentBuilder documentBuilder = factory.newDocumentBuilder(); + Document document = documentBuilder.parse(is); + Element root = document.getDocumentElement(); + NodeList nodeList = root.getChildNodes(); + + try { + String modify = request.getParameter("modify"); + if(modify == null || modify.equals("")){ + + } else if(modify.equals("active")){ + updateTagFillColor(nodeList, "green"); + } else if(modify.equals("alert")){ + updateTagFillColor(nodeList, "red"); + } + + String str4 = DocumentToString(document); + byte[] bytes = str4.getBytes(); + + response.setHeader(HttpHeaders.ACCEPT_RANGES, "bytes"); + response.setHeader(HttpHeaders.CONTENT_TYPE, "image/svg+xml"); + response.setHeader(HttpHeaders.CONNECTION, "keep-alive"); + response.setHeader(HttpHeaders.ACCESS_CONTROL_ALLOW_CREDENTIALS, "true"); + response.setHeader("Pragma", "no-cache"); + response.setHeader(HttpHeaders.CACHE_CONTROL, "no-cache, must-revalidate"); + response.setDateHeader(HttpHeaders.EXPIRES, 0); + response.setHeader(HttpHeaders.CONTENT_LENGTH, Integer.toString(bytes.length)); + response.setContentType("image/svg+xml"); + + OutputStream os = response.getOutputStream(); + os.write(bytes); + os.flush(); + os.close(); + + + } catch (Exception e){ + + } + + + } + + + + public static String DocumentToString( Document doc ) + { + try + { + StringWriter clsOutput = new StringWriter( ); + Transformer clsTrans = TransformerFactory.newInstance( ).newTransformer( ); + + clsTrans.setOutputProperty( OutputKeys.OMIT_XML_DECLARATION, "no" ); + clsTrans.setOutputProperty( OutputKeys.METHOD, "xml" ); + clsTrans.setOutputProperty( OutputKeys.INDENT, "yes" ); + clsTrans.setOutputProperty( OutputKeys.ENCODING, "UTF-8" ); + + clsTrans.transform( new DOMSource( doc ), new StreamResult( clsOutput ) ); + + return clsOutput.toString( ); + } + catch( Exception ex ) + { + return ""; + } + } + + private void updateTagFillColor(NodeList nodeList, String newFillColor) { + + for (int i = 0; i < nodeList.getLength(); i++) { + Node node = nodeList.item(i); + NamedNodeMap namedNodeMap = node.getAttributes(); + if(namedNodeMap != null && namedNodeMap.getLength() > 0){ + for (int j = 0; j < namedNodeMap.getLength(); j++) { + Node namedNode = namedNodeMap.item(j); + if (namedNode.getNodeName().equalsIgnoreCase("fill")) { + namedNode.setNodeValue(newFillColor); // Change the color of the fill attribute. + } + } + } + } + } + + +} \ No newline at end of file diff --git a/src/main/java/cokr/xit/fims/base/MenuController.java b/src/main/java/cokr/xit/fims/base/MenuController.java new file mode 100644 index 00000000..b058d11e --- /dev/null +++ b/src/main/java/cokr/xit/fims/base/MenuController.java @@ -0,0 +1,6 @@ +package cokr.xit.fims.base; + +import org.springframework.stereotype.Controller; + +@Controller +public class MenuController extends cokr.xit.base.menu.web.MenuController {} \ No newline at end of file diff --git a/src/main/java/cokr/xit/fims/base/UserController.java b/src/main/java/cokr/xit/fims/base/UserController.java new file mode 100644 index 00000000..badab9b2 --- /dev/null +++ b/src/main/java/cokr/xit/fims/base/UserController.java @@ -0,0 +1,27 @@ +package cokr.xit.fims.base; + +import org.springframework.stereotype.Controller; +import org.springframework.web.servlet.ModelAndView; + +import cokr.xit.base.user.ManagedUser; + +@Controller +public class UserController extends cokr.xit.base.user.web.UserController { + + + + @Override + public ModelAndView main() { + ModelAndView mav = super.main(); + return mav; + } + + @Override + public ModelAndView getInfo(String userID) { + ModelAndView mav = super.getInfo(userID); + + + return mav; + } + +} \ 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 7109484e..91a3a3e1 100644 --- a/src/main/resources/application.yml +++ b/src/main/resources/application.yml @@ -2,15 +2,35 @@ server: port: 39700 servlet: context-path: / +<<<<<<< HEAD +======= + +# ssl: +# enabled: true +# key-alias: fimskeystore +# key-store: classpath:fimskeystore.pkcs12 +# key-store-password: 'Xit5811807@)@#' +# key-password: 'Xit5811807@)@#' +# trust-store: classpath:fimstrust.pkcs12 +# trust-store-password: 'Xit5811807@)@#' + +# tomcat: +# remoteip: +# protocol-header-https-value: https + +>>>>>>> 0cc6b7e54c69a7387e08797d174497c13f01b6b7 spring: application: name: dummy-external-system + main: allow-bean-definition-overriding: true +# web-application-type: SERVLET sql: init: platform: mariadb + datasource: hikari: driver-class-name: net.sf.log4jdbc.sql.jdbcapi.DriverSpy @@ -18,23 +38,12 @@ 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: @@ -51,4 +60,3 @@ propertyService: extFileName: - encoding: UTF-8 filename: classpath*:intf-conf/xit-lvis.properties - diff --git a/src/main/resources/sql/mapper/base/actiongroup-mapper.xml b/src/main/resources/sql/mapper/base/actiongroup-mapper.xml new file mode 100644 index 00000000..f42bb2ee --- /dev/null +++ b/src/main/resources/sql/mapper/base/actiongroup-mapper.xml @@ -0,0 +1,78 @@ + + + + + + + + + + + + +SELECT A.* + FROM TB_ACTION_GRP A + +AND GRP_ID IN (#{groupID}) +AND ${by} LIKE CONCAT('%', #{term}, '%') + + + + + + + +/* 기능그룹 등록(actionGroupMapper.insertGroup) */ +INSERT INTO TB_ACTION_GRP ( + GRP_ID + , GRP_NM + , DSCRP + , REG_DT +) VALUES ( + #{id} + , #{name} + , #{description} + , +) + +/* 기능그룹 수정(actionGroupMapper.updateGroup) */ +UPDATE TB_ACTION_GRP SET + GRP_NM = #{name} + , DSCRP = #{description} + WHERE GRP_ID = #{id} + +/* 기능그룹 삭제(actionGroupMapper.removeGroups) */ +DELETE FROM TB_ACTION_GRP + WHERE GRP_ID IN (#{groupID}) + + + +/* 그룹별 기능 추가(actionGroupMapper.addActions) */ +INSERT INTO TB_GRP_ACTION (GRP_ID, ACTION, REG_DT, RGTR) +SELECT GRP_ID, ACTION,, #{currentUser.id} + FROM ( + SELECT #{groupID} GRP_ID, #{action} ACTION FROM DUAL + ) A + WHERE NOT EXISTS ( + SELECT GRP_ID, ACTION + FROM TB_GRP_ACTION B + WHERE B.GRP_ID = A.GRP_ID + AND B.ACTION = A.ACTION + ) + +/* 그룹별 기능 삭제(actionGroupMapper.removeActions) */ +DELETE FROM TB_GRP_ACTION + +AND GRP_ID IN (#{groupID}) +AND ACTION IN (#{action}) + + + + \ No newline at end of file diff --git a/src/main/resources/sql/mapper/base/authority-mapper.xml b/src/main/resources/sql/mapper/base/authority-mapper.xml new file mode 100644 index 00000000..0ff4d748 --- /dev/null +++ b/src/main/resources/sql/mapper/base/authority-mapper.xml @@ -0,0 +1,145 @@ + + + + + + + + + + + + + + + +SELECT * FROM ( + SELECT 0 AUTH_TYPE, 'ROLE_ADMIN' AUTH_ID, '시스템 관리자' AUTH_NM, '시스템 관리자' DSCRP, 'all' INF_SCP, 'all' USER_INF_SCP,REG_DT UNION + SELECT 1 AUTH_TYPE, 'ROLE_ANONYMOUS' AUTH_ID, '익명 사용자' AUTH_NM, '모든 사용자' DSCRP, 'none' INF_SCP, 'none' USER_INF_SCP,REG_DT UNION + SELECT 1 AUTH_TYPE, 'ROLE_USER' AUTH_ID, '시스템 사용자' AUTH_NM, '로그인한 사용자' DSCRP, 'self' INF_SCP, 'self' USER_INF_SCP,REG_DT UNION + SELECT 2 AUTH_TYPE, AUTH_ID, AUTH_NM, DSCRP, INF_SCP, USER_INF_SCP, REG_DT + FROM TB_AUTHORITY +) A + +AND AUTH_ID IN (#{authID}) +AND ${by} LIKE CONCAT('%', #{term}, '%') + + + + + + + + +/* 권한 등록(authorityMapper.insertAuthority) */ +INSERT INTO TB_AUTHORITY ( + AUTH_ID + , AUTH_NM + , DSCRP + , INF_SCP + , USER_INF_SCP + , REG_DT +) VALUES ( + #{id} + , #{name} + , #{description} + , #{infoScope} + , #{userInfoScope} + , +) + +/* 권한 수정(authorityMapper.updateAuthority) */ +UPDATE TB_AUTHORITY SET + AUTH_NM = #{name} + , DSCRP = #{description} + , INF_SCP = #{infoScope} + , USER_INF_SCP = #{userInfoScope} + WHERE AUTH_ID = #{id} + +/* 권한 삭제(authorityMapper.removeAuthorities) */ +DELETE FROM TB_AUTHORITY + WHERE AUTH_ID IN (#{authID}) + + + +/* 권한-기능그룹 추가(authorityMapper.addActionGroups) */ +INSERT INTO TB_AUTH_ACTION (AUTH_ID, GRP_ID, REG_DT) +SELECT AUTH_ID, GRP_ID, + FROM ( + SELECT #{authID} AUTH_ID, #{groupID} GRP_ID FROM DUAL + ) A + WHERE NOT EXISTS ( + SELECT AUTH_ID, GRP_ID + FROM TB_AUTH_ACTION B + WHERE B.AUTH_ID = A.AUTH_ID + AND B.GRP_ID = A.GRP_ID + ) + +/* 권한-기능그룹 삭제(authorityMapper.removeActionGroups) */ +DELETE FROM TB_AUTH_ACTION + +AND AUTH_ID IN (#{authID}) +AND GRP_ID IN (#{groupID}) + + + + + + + +SELECT A.*, USER_ACNT + FROM TB_AUTH_USER A + , TB_USER B + +AND AUTH_ID IN (#{authID}) +AND A.USER_ID IN (#{userID}) + AND A.USER_ID = B.USER_ID + + + + + + + + +/* 권한-사용자 추가(authorityMapper.addUsers) */ +INSERT INTO TB_AUTH_USER (AUTH_ID, USER_ID, REG_DT) +SELECT AUTH_ID, USER_ID, + FROM ( + SELECT #{authID} AUTH_ID, #{userID} USER_ID FROM DUAL + ) A + WHERE NOT EXISTS ( + SELECT AUTH_ID, USER_ID + FROM TB_AUTH_USER B + WHERE B.AUTH_ID = A.AUTH_ID + AND B.USER_ID = A.USER_ID + ) + +/* 권한-사용자 삭제(authorityMapper.removeUsers) */ +DELETE FROM TB_AUTH_USER + +AND AUTH_ID IN (#{authID}) +AND USER_ID IN (#{userID}) + + + + \ No newline at end of file diff --git a/src/main/resources/sql/mapper/base/code-mapper.xml b/src/main/resources/sql/mapper/base/code-mapper.xml new file mode 100644 index 00000000..be27d2b6 --- /dev/null +++ b/src/main/resources/sql/mapper/base/code-mapper.xml @@ -0,0 +1,230 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +SELECT * + FROM TB_CODE_CTGR + WHERE USE_YN = 'Y' + AND CTGR_ID IN (#{categoryID}) + + + + + + + +/* 코드 카테고리 등록(codeMapper.insertCategory) */ +INSERT INTO TB_CODE_CTGR ( + CTGR_ID + , CTGR_NM + , DSCRP + , REG_DT + , RGTR + , MDFCN_DT + , MDFR + , USE_YN +) VALUES ( + #{category.id} + , #{category.name} + , #{category.description} + , + , #{currentUser.id} + , + , #{currentUser.id} + , 'Y' +) + +/* 코드 카테고리 수정(codeMapper.updateCategory) */ +UPDATE TB_CODE_CTGR SET + CTGR_NM = #{category.name} + , DSCRP = #{category.description} + , MDFCN_DT = + , MDFR = #{currentUser.id} +WHERE CTGR_ID = #{category.id} + +/* 코드 카테고리 제거(codeMapper.removeCategories) */ +UPDATE TB_CODE_CTGR SET + MDFCN_DT = + , MDFR = #{currentUser.id} + , USE_YN = 'N' +WHERE CTGR_ID IN (#{categoryID}) + + +SELECT * + FROM TB_CODE_GRP + WHERE USE_YN = 'Y' +AND CTGR_ID IN (#{categoryID}) +AND GRP_ID IN (#{groupID}) + + + + + + + +/* 코드그룹 등록(codeMapper.insertGroup) */ +INSERT INTO TB_CODE_GRP ( + GRP_ID + , GRP_NM + , CTGR_ID + , DSCRP + , REG_DT + , RGTR + , MDFCN_DT + , MDFR + , USE_YN +) VALUES ( + #{group.id} + , #{group.name} + , #{group.categoryID} + , #{group.description} + , + , #{currentUser.id} + , + , #{currentUser.id} + , 'Y' +) + +/* 코드그룹 수정(codeMapper.updateGroup) */ +UPDATE TB_CODE_GRP SET + GRP_NM = #{group.name} + , CTGR_ID = #{group.categoryID} + , DSCRP = #{group.description} + , MDFCN_DT = + , MDFR = #{currentUser.id} + WHERE GRP_ID = #{group.id} + +/*코드그룹 제거(codeMapper.removeGroups) */ +UPDATE TB_CODE_GRP SET + USE_YN = 'N' + , MDFCN_DT = + , MDFR = #{currentUser.id} + +CTGR_ID IN (#{categoryID}) +GRP_ID IN (#{groupID}) + + + +SELECT * + FROM TB_CMN_CODE + WHERE USE_YN = 'Y' + AND GRP_ID IN (#{groupID}) + AND CODE IN (#{code}) + + + + + + + +/* 코드 등록(codeMapper.insertCode) */ +INSERT INTO TB_CMN_CODE ( + GRP_ID + , CODE + , CODE_VAL + , DSCRP + , ETC_1 + , ETC_2 + , ETC_3 + , SRT_ORD + , REG_DT + , RGTR + , MDFCN_DT + , MDFR + , USE_YN +) VALUES ( + #{code.groupID} + , #{code.code} + , #{code.value} + , #{code.description} + , #{code.etc1} + , #{code.etc2} + , #{code.etc3} + , #{code.sortOrder} + , + , #{currentUser.id} + , + , #{currentUser.id} + , 'Y' +) + +/* 코드 수정(codeMapper.updateCode) */ +UPDATE TB_CMN_CODE SET + CODE_VAL = #{code.value} + , DSCRP = #{code.description} + , ETC_1 = #{code.etc1} + , ETC_2 = #{code.etc2} + , ETC_3 = #{code.etc3} + , MDFCN_DT = + , MDFR = #{currentUser.id} + WHERE GRP_ID = #{code.groupID} + AND CODE = #{code.code} + +/* 코드 정렬순서 변경(codeMapper.reorderCodes) */ +UPDATE TB_CMN_CODE SET + SRT_ORD = CASE CODE + WHEN #{code} THEN #{index} + ELSE SRT_ORD + END + , MDFCN_DT = + , MDFR = #{currentUser.id} + WHERE GRP_ID = #{groupID} + AND CODE IN (#{code}) + +/* 코드 제거(codeMapper.removeCodes) */ +UPDATE TB_CMN_CODE SET + MDFCN_DT = + , MDFR = #{currentUser.id} + , USE_YN = 'N' + +AND GRP_ID IN (#{groupID}) +AND CODE IN (#{code}) + + + \ No newline at end of file diff --git a/src/main/resources/sql/mapper/base/file-mapper.xml b/src/main/resources/sql/mapper/base/file-mapper.xml new file mode 100644 index 00000000..55f5dc6b --- /dev/null +++ b/src/main/resources/sql/mapper/base/file-mapper.xml @@ -0,0 +1,130 @@ + + + + + + + + + + + + + + + + + + + + + +SELECT INF_TYPE + , CONCAT('files/', DIR, DATE_FORMAT(CURRENT_DATE, '/%Y/%m/%d/')) DIR + FROM ( + SELECT '010' INF_TYPE, 'interface/attachment/smg' DIR UNION + SELECT '020' INF_TYPE, 'interface/attachment/saeol' DIR UNION + SELECT '030' INF_TYPE, 'interface/attachment/epost' DIR UNION + + SELECT '100' INF_TYPE, 'attachment/violation' DIR UNION + SELECT '110' INF_TYPE, 'attachment/opinion' DIR UNION + SELECT '190' INF_TYPE, 'attachment/capture' DIR + ) FILE_DIRS + + + +SELECT A.*, FILE_PATH URL + FROM TB_FILE A + WHERE FILE_ID IN (#{fileID}) + ORDER BY FILE_ID + +SELECT A.*, FILE_PATH URL + FROM TB_FILE A + + AND A.INF_TYPE = #{infoType} + AND INF_KEY IN (#{infoKey}) + AND USE_YN = 'Y' + + + + + + + + + + +/* 파일 등록(fileMapper.insertFile) */ + +SELECT NEW_ID, CONCAT(DIR, NEW_ID, '.', #{file.extension}) PATH + FROM ( + SELECT IFNULL(MAX(FILE_ID) + 1, CONCAT(THIS_DAY, '00001')) NEW_ID + FROM TB_FILE A, () B + WHERE FILE_ID LIKE CONCAT(THIS_DAY, '%') + ) T1, ( + + WHERE INF_TYPE = #{file.infoType} + ) T2 +INSERT INTO TB_FILE ( + FILE_ID + , INF_TYPE + , INF_KEY + , SUB_TYPE + , FILE_NM + , FILE_PATH + , MIME_TYPE + , FILE_SIZE + , DNLD_CNT + , SRT_ORD + , RGTR + , REG_DT + , USE_YN +) VALUES ( + #{file.id} + , #{file.infoType} + , #{file.infoKey} + , #{file.subType} + , #{file.name} + , #{file.path} + , #{file.mimeType} + , #{file.size} + , #{file.downloadCount} + , #{file.sortOrder} + , #{currentUser.id} + , + , 'Y' +) + + +/* 파일 순서 변경(fileMapper.reorder) */ +UPDATE TB_FILE SET + SRT_ORD = CASE FILE_ID + WHEN #{fileID} THEN #{index} + + ELSE SRT_ORD END +WHERE FILE_ID IN (#{fileID}) + +/* 다운로드 횟수 증가(fileMapper.updateDownloadCount) */ +UPDATE TB_FILE SET + DNLD_CNT = DNLD_CNT + 1 + WHERE USE_YN = 'Y' + AND FILE_ID IN (#{fileID}) + +/* 파일 제거(fileMapper.removeFiles) */ +UPDATE TB_FILE SET + USE_YN = 'N' + WHERE USE_YN = 'Y' + AND FILE_ID IN (#{fileID}) + + AND INF_TYPE = #{infoType} + AND INF_KEY IN (#{infoKey}) + +/* 파일 삭제(fileMapper.deleteFiles) */ +DELETE FROM TB_FILE +WHERE FILE_ID IN (#{fileID}) + + + \ No newline at end of file diff --git a/src/main/resources/sql/mapper/base/menu-mapper.xml b/src/main/resources/sql/mapper/base/menu-mapper.xml new file mode 100644 index 00000000..2856c0bc --- /dev/null +++ b/src/main/resources/sql/mapper/base/menu-mapper.xml @@ -0,0 +1,94 @@ + + + + + + + + + + + + + + + + + + + +SELECT A.* + FROM TB_MENU A +WHERE MENU_NO = #{menuID} + ORDER BY PRNT_NO, SRT_ORD, MENU_NO + + + + + +/* 메뉴 등록(menuMapper.insertMenu) */ + +SELECT NEW_NO, NEW_ORD + FROM (SELECT IFNULL(MAX(MENU_NO) + 1, 0) NEW_NO FROM TB_MENU) A, + () B +INSERT INTO TB_MENU ( + MENU_NO + , MENU_NM + , PRNT_NO + , PGRM_FILE_NM + , ACTION + , DSCRP + , IMG_NM + , IMG_CNF + , SRT_ORD + , REG_DT + , RGTR +) VALUES ( + #{menu.id} + , #{menu.name} + , #{menu.parentID} + , #{menu.programFilename} + , #{menu.action} + , #{menu.description} + , #{menu.imageName} + , #{menu.imageConf} + , #{menu.sortOrder} + , + , #{currentUser.id} +) + +/* 메뉴 수정(menuMapper.updateMenu) */ +UPDATE TB_MENU SET + MENU_NM = #{menu.name} + , PGRM_FILE_NM = #{menu.programFilename} + , ACTION = #{menu.action} + , DSCRP = #{menu.description} + , IMG_NM = #{menu.imageName} + , IMG_CNF = #{menu.imageConf} +WHERE MENU_NO = #{menu.id} + +SELECT IFNULL(MAX(SRT_ORD) + 1, 0) NEW_ORD FROM TB_MENU WHERE PRNT_NO = IFNULL(#{parentID}, IFNULL(#{menu.parentID}, 0)) + +/* 메뉴 이동(menuMapper.moveMenus) */ +UPDATE TB_MENU SET + PRNT_NO = #{parentID} + , SRT_ORD = SRT_ORD + () + WHERE MENU_NO IN (#{menuID}) + + +/* 메뉴 순서 변경(menuMapper.reorderMenus) */ +UPDATE TB_MENU SET + SRT_ORD = CASE MENU_NO + WHEN #{menuID} THEN #{index} + + ELSE MENU_NO END + WHERE MENU_NO IN (#{menuID}) + +/* 메뉴 제거(menuMapper.removeMenus) */ +DELETE FROM TB_MENU + WHERE MENU_NO IN (#{menuID}) + + + \ No newline at end of file diff --git a/src/main/resources/sql/mapper/base/policy-mapper.xml b/src/main/resources/sql/mapper/base/policy-mapper.xml new file mode 100644 index 00000000..ad692385 --- /dev/null +++ b/src/main/resources/sql/mapper/base/policy-mapper.xml @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + +/* 로그인 정책 등록(policyMapper.insertPolicy) */ +INSERT INTO TB_LOGIN_POLICY ( + USER_ID + , IP_ADRS + , DPLCT_YN + , LIMIT_YN + , REG_DT + , RGTR + , MDFCN_DT + , MDFR +) VALUES ( + #{policy.userID} + , #{policy.ipAddress} + , #{policy.duplicateYN} + , #{policy.limitYN} + , + , #{currentUser.id} + , + , #{currentUser.id} +) + +/* 로그인 정책 수정(policyMapper.updatePolicy) */ +UPDATE TB_LOGIN_POLICY SET + IP_ADRS = #{policy.ipAddress} + , DPLCT_YN = #{policy.duplicateYN} + , LIMIT_YN = #{policy.limitYN} + , MDFR = #{currentUser.id} + , MDFCN_DT = +WHERE USER_ID = #{policy.userID} + +/* 로그인 정책 삭제(policyMapper.removePolicy) */ +DELETE FROM TB_LOGIN_POLICY + WHERE USER_ID IN (#{userID}) + + \ No newline at end of file diff --git a/src/main/resources/sql/mapper/base/program.xml b/src/main/resources/sql/mapper/base/program.xml new file mode 100644 index 00000000..dbcfd763 --- /dev/null +++ b/src/main/resources/sql/mapper/base/program.xml @@ -0,0 +1,135 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + +SELECT A.* + FROM TB_PROGRAM A + +${by} LIKE CONCAT('%', #{term}, '%') +PGRM_FILE_NM IN (#{filename}) + + ORDER BY${by}PGRM_FILE_NM + + + + + + +/* 프로그램 등록(program.insertProgram) */ +INSERT INTO TB_PROGRAM ( + PGRM_FILE_NM + , PGRM_FILE_PATH + , PGRM_NM + , DSCRP + , URL +) VALUES ( + #{filename} + , #{location} + , #{name} + , #{description} + , #{url} +) + +/* 프로그램 수정(program.updateProgram) */ +UPDATE TB_PROGRAM SET + PGRM_FILE_PATH = #{location} + , PGRM_NM = #{name} + , DSCRP = #{description} + , URL = #{url} +WHERE PGRM_FILE_NM = #{filename} + +/* 프로그램 삭제(program.removePrograms) */ +DELETE FROM TB_PROGRAM + WHERE PGRM_FILE_NM IN (#{filename}) + +/* 프로그램 비우기(program.clearPrograms) */ +DELETE FROM TB_PROGRAM + WHERE PGRM_FILE_NM NOT IN (SELECT PGRM_FILE_NM FROM TB_MENU) + + +SELECT A.* + FROM TB_PGRM_CHNG_REQ A + +REQ_DT >= #{fromReqDate} +REQ_DT <= #{toReqDate} +${by} LIKE CONCAT('%', #{term}, '%') +PGRM_FILE_NAME IN (#{filename}) +REQ_ID IN (#{reqID}) + + ORDER BY PGRM_FILE_NM,${by}REQ_ID DESC + + + + + +/* 프로그램 변경요청 등록(program.insertRequest) */ +INSERT INTO TB_PGRM_CHNG_REQ ( + PGRM_FILE_NM + , REQ_ID + , SUBJECT + , REQ_USER + , REQ_DT + , REQ_CNTNT + , PRSC_USER + , PRCS_DT + , PRCS_CNTNT + , PRCS_STATUS +) VALUES ( + #{filename} + , #{id} + , #{subject} + , #{requestorID} + , #{requestDate} + , #{requestDetail} + , #{processorID} + , #{processDate} + , #{processDetail} + , #{status} +) + +/* 프로그램 변경요청 수정(program.updateRequest) */ +UPDATE TB_PGRM_CHNG_REQ SET + SUBJECT = #{subject} + , REQ_USER = #{requestorID} + , REQ_DT = #{requestDate} + , REQ_CNTNT = #{requestDetail} + , PRSC_USER = #{processorID} + , PRCS_DT = #{processDate} + , PRCS_CNTNT = #{processDetail} +WHERE PGRM_FILE_NM = #{filename} +AND REQ_ID = #{id} + +/* 프로그램 변경요청 상태 변경(program.setRequestStatus) */ +UPDATE TB_PGRM_CHNG_REQ SET + PRCS_STATUS = #{status} + WHERE PGRM_FILE_NM = #{filename} + AND REQ_ID = #{id} + + \ No newline at end of file diff --git a/src/main/resources/sql/mapper/base/user-mapper.xml b/src/main/resources/sql/mapper/base/user-mapper.xml new file mode 100644 index 00000000..5827767c --- /dev/null +++ b/src/main/resources/sql/mapper/base/user-mapper.xml @@ -0,0 +1,234 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +SELECT USER_ID + , USER_ACNT + , USER_NM + , PASSWD_HINT + , PASSWD_NSR + , EMP_NO + , RSDNT_NO + , GENDER + , BRDT + , AREA_NO + , ZIP + , ADDR + , DADDR + , TELNO + , MBL_TELNO + , FXNO + , EML_ADRS + , POS_NM + , GRP_ID + , ORG_ID + , DEPT_CD + , (CASE + WHEN A.DEPT_CD = 'default' + THEN '기본 부서' + ELSE (SELECT DEPT_NM FROM TB_DEPT_INFO WHERE DEPT_CD = A.DEPT_CD) + END + ) AS DEPT_NM + , NSTT_CD + , (CASE + WHEN A.NSTT_CD = 'default' + THEN '기본 기관' + ELSE (SELECT INST_NM FROM TB_SGG_INFO WHERE INST_CD = A.NSTT_CD) + END + ) AS NSTT_NM + , CRTFC_DN + , LOCK_YN + , LOCK_CNT + , LOCK_DT + , REG_DT + , STTS + FROM TB_USER A +AND ${by} LIKE CONCAT('%', #{term}, '%') + USER_ID IN (#{userID}) + AND STTS != 'D' + AND STTS = #{status} + + + + + + + + + + +SELECT LPAD(IFNULL(MAX(USER_ID) + 1, 1), 10, '0') NEW_ID FROM TB_USER +/* 사용자 정보 등록(userMapper.insertUser) */ +INSERT INTO TB_USER ( + USER_ID + , USER_ACNT + , USER_NM + , PASSWD + , PASSWD_HINT + , PASSWD_NSR + , EMP_NO + , RSDNT_NO + , GENDER + , BRDT + , AREA_NO + , ZIP + , ADDR + , DADDR + , TELNO + , MBL_TELNO + , FXNO + , EML_ADRS + , POS_NM + , GRP_ID + , ORG_ID + , NSTT_CD + , CRTFC_DN + , LOCK_YN + , LOCK_CNT + , LOCK_DT + , REG_DT + , RGTR + , MDFCN_DT + , MDFR + , USE_YN + , STTS +) VALUES ( + #{id} + , #{account} + , #{name} + , #{password} + , #{passwordHint} + , #{passwordHintAnswer} + , #{empNo} + , #{residentRegNo} + , #{gender} + , #{birthday} + , #{areaNo} + , #{zipCode} + , #{address} + , #{addressDetail} + , #{phoneNo} + , #{mobilePhoneNo} + , #{faxNo} + , #{emailAddress} + , #{positionName} + , #{groupID} + , #{orgID} + , #{institute} + , #{certificateDn} + , 'N' + , 0 + , NULL + , + , #{createdBy} + , + , #{createdBy} + , 'Y' + , #{status} +) + +/* 사용자 정보 수정(userMapper.updateUser) */ +UPDATE TB_USER SET + USER_NM = #{name} + , PASSWD_HINT = #{passwordHint} + , PASSWD_NSR = #{passwordHintAnswer} + , EMP_NO = #{empNo} + , RSDNT_NO = #{residentRegNo} + , GENDER = #{gender} + , BRDT = #{birthday} + , AREA_NO = #{areaNo} + , ZIP = #{zipCode} + , ADDR = #{address} + , DADDR = #{addressDetail} + , TELNO = #{phoneNo} + , MBL_TELNO = #{mobilePhoneNo} + , FXNO = #{faxNo} + , EML_ADRS = #{emailAddress} + , POS_NM = #{positionName} + , GRP_ID = #{groupID} + , ORG_ID = #{orgID} + , NSTT_CD = #{institute} + , DEPT_CD = #{deptCode} + , CRTFC_DN = #{certificateDn} + , MDFCN_DT = + , MDFR = #{modifiedBy} + WHERE USER_ID = #{id} + +/* 비밀번호 변경(userMapper.changePassword) */ +UPDATE TB_USER SET + PASSWD = CASE USER_ID + WHEN #{userPassword.userID} THEN #{userPassword.password} + ELSE PASSWD END + , MDFCN_DT = + , MDFR = #{currentUser.id} + WHERE USER_ID IN (#{userID}) + + +/* 사용자 잠김 해제(userMapper.lockUsers) */ +UPDATE TB_USER SET + LOCK_YN = 'Y' + , LOCK_CNT = LOCK_CNT + 1 + , LOCK_DT = + LOCK_YN = 'N' + , LOCK_CNT = 0 + , LOCK_DT = NULL + , MDFCN_DT = + , MDFR = #{currentUser.id} + WHERE USER_ID IN (#{userID}) + + +/* 사용자 상태 변경(userMapper.setStatus) */ +UPDATE TB_USER SET + STTS = #{status} + , USE_YN = 'N' + , MDFCN_DT = + , MDFR = #{currentUser.id} + WHERE USER_ID IN (#{userID}) + AND STTS != #{status} + + + \ No newline at end of file diff --git a/work/Tomcat/localhost/ROOT/org/apache/jsp/WEB_002dINF/jsp/include/dashboard_jsp.class b/work/Tomcat/localhost/ROOT/org/apache/jsp/WEB_002dINF/jsp/include/dashboard_jsp.class new file mode 100644 index 00000000..b3af6167 Binary files /dev/null and b/work/Tomcat/localhost/ROOT/org/apache/jsp/WEB_002dINF/jsp/include/dashboard_jsp.class differ diff --git a/work/Tomcat/localhost/ROOT/org/apache/jsp/WEB_002dINF/jsp/include/dashboard_jsp.java b/work/Tomcat/localhost/ROOT/org/apache/jsp/WEB_002dINF/jsp/include/dashboard_jsp.java new file mode 100644 index 00000000..0e01066f --- /dev/null +++ b/work/Tomcat/localhost/ROOT/org/apache/jsp/WEB_002dINF/jsp/include/dashboard_jsp.java @@ -0,0 +1,661 @@ +/* + * Generated by the Jasper component of Apache Tomcat + * Version: Apache Tomcat/9.0.75 + * Generated at: 2023-10-10 04:27:23 UTC + * Note: The last modified time of this file was set to + * the last modified time of the source file after + * generation to assist with modification tracking. + */ +package org.apache.jsp.WEB_002dINF.jsp.include; + +import javax.servlet.*; +import javax.servlet.http.*; +import javax.servlet.jsp.*; + +public final class dashboard_jsp extends org.apache.jasper.runtime.HttpJspBase + implements org.apache.jasper.runtime.JspSourceDependent, + org.apache.jasper.runtime.JspSourceImports { + + private static final javax.servlet.jsp.JspFactory _jspxFactory = + javax.servlet.jsp.JspFactory.getDefaultFactory(); + + private static java.util.Map _jspx_dependants; + + static { + _jspx_dependants = new java.util.HashMap(5); + _jspx_dependants.put("/WEB-INF/jsp/include/taglib.jsp", Long.valueOf(1696469747129L)); + _jspx_dependants.put("jar:file:/D:/repo/javax/servlet/jstl/1.2/jstl-1.2.jar!/META-INF/fmt.tld", Long.valueOf(1153352682000L)); + _jspx_dependants.put("file:/D:/repo/javax/servlet/jstl/1.2/jstl-1.2.jar", Long.valueOf(1678766202128L)); + _jspx_dependants.put("jar:file:/D:/repo/javax/servlet/jstl/1.2/jstl-1.2.jar!/META-INF/fn.tld", Long.valueOf(1153352682000L)); + _jspx_dependants.put("jar:file:/D:/repo/javax/servlet/jstl/1.2/jstl-1.2.jar!/META-INF/c.tld", Long.valueOf(1153352682000L)); + } + + private static final java.util.Set _jspx_imports_packages; + + private static final java.util.Set _jspx_imports_classes; + + static { + _jspx_imports_packages = new java.util.HashSet<>(); + _jspx_imports_packages.add("javax.servlet"); + _jspx_imports_packages.add("javax.servlet.http"); + _jspx_imports_packages.add("javax.servlet.jsp"); + _jspx_imports_classes = null; + } + + private org.apache.jasper.runtime.TagHandlerPool _005fjspx_005ftagPool_005fc_005fset_0026_005fvar_005fscope; + + private volatile javax.el.ExpressionFactory _el_expressionfactory; + private volatile org.apache.tomcat.InstanceManager _jsp_instancemanager; + + public java.util.Map getDependants() { + return _jspx_dependants; + } + + public java.util.Set getPackageImports() { + return _jspx_imports_packages; + } + + public java.util.Set getClassImports() { + return _jspx_imports_classes; + } + + public javax.el.ExpressionFactory _jsp_getExpressionFactory() { + if (_el_expressionfactory == null) { + synchronized (this) { + if (_el_expressionfactory == null) { + _el_expressionfactory = _jspxFactory.getJspApplicationContext(getServletConfig().getServletContext()).getExpressionFactory(); + } + } + } + return _el_expressionfactory; + } + + public org.apache.tomcat.InstanceManager _jsp_getInstanceManager() { + if (_jsp_instancemanager == null) { + synchronized (this) { + if (_jsp_instancemanager == null) { + _jsp_instancemanager = org.apache.jasper.runtime.InstanceManagerFactory.getInstanceManager(getServletConfig()); + } + } + } + return _jsp_instancemanager; + } + + public void _jspInit() { + _005fjspx_005ftagPool_005fc_005fset_0026_005fvar_005fscope = org.apache.jasper.runtime.TagHandlerPool.getTagHandlerPool(getServletConfig()); + } + + public void _jspDestroy() { + _005fjspx_005ftagPool_005fc_005fset_0026_005fvar_005fscope.release(); + } + + public void _jspService(final javax.servlet.http.HttpServletRequest request, final javax.servlet.http.HttpServletResponse response) + throws java.io.IOException, javax.servlet.ServletException { + + if (!javax.servlet.DispatcherType.ERROR.equals(request.getDispatcherType())) { + final java.lang.String _jspx_method = request.getMethod(); + if ("OPTIONS".equals(_jspx_method)) { + response.setHeader("Allow","GET, HEAD, POST, OPTIONS"); + return; + } + if (!"GET".equals(_jspx_method) && !"POST".equals(_jspx_method) && !"HEAD".equals(_jspx_method)) { + response.setHeader("Allow","GET, HEAD, POST, OPTIONS"); + response.sendError(HttpServletResponse.SC_METHOD_NOT_ALLOWED, "JSPs only permit GET, POST or HEAD. Jasper also permits OPTIONS"); + return; + } + } + + final javax.servlet.jsp.PageContext pageContext; + final javax.servlet.ServletContext application; + final javax.servlet.ServletConfig config; + javax.servlet.jsp.JspWriter out = null; + final java.lang.Object page = this; + javax.servlet.jsp.JspWriter _jspx_out = null; + javax.servlet.jsp.PageContext _jspx_page_context = null; + + + try { + response.setContentType("text/html; charset=UTF-8"); + pageContext = _jspxFactory.getPageContext(this, request, response, + null, false, 8192, true); + _jspx_page_context = pageContext; + application = pageContext.getServletContext(); + config = pageContext.getServletConfig(); + out = pageContext.getOut(); + _jspx_out = out; + + out.write('\r'); + out.write('\n'); + out.write('\r'); + out.write('\n'); + out.write("\r\n"); + out.write("\r\n"); + out.write("
\r\n"); + out.write("
\r\n"); + out.write("
\r\n"); + out.write("
\r\n"); + out.write("

2/10

\r\n"); + out.write(" \r\n"); + out.write("
\r\n"); + out.write("
\r\n"); + out.write("

2/3

\r\n"); + out.write(" \r\n"); + out.write("
\r\n"); + out.write("
\r\n"); + out.write("

2/3

\r\n"); + out.write(" \r\n"); + out.write("
\r\n"); + out.write("
\r\n"); + out.write("

10/10

\r\n"); + out.write(" \r\n"); + out.write("
\r\n"); + out.write("
\r\n"); + out.write(" \r\n"); + out.write("
\r\n"); + out.write(" \r\n"); + out.write("
\r\n"); + out.write("
\r\n"); + out.write("
\r\n"); + out.write("

2/10

\r\n"); + out.write(" \r\n"); + out.write("
\r\n"); + out.write("
\r\n"); + out.write("

2/3

\r\n"); + out.write(" \r\n"); + out.write("
\r\n"); + out.write("
\r\n"); + out.write(" \r\n"); + out.write("
\r\n"); + out.write(" \r\n"); + out.write("
\r\n"); + out.write("
\r\n"); + out.write("
\r\n"); + out.write("

2/10

\r\n"); + out.write(" \r\n"); + out.write("
\r\n"); + out.write("
\r\n"); + out.write("

2/3

\r\n"); + out.write(" \r\n"); + out.write("
\r\n"); + out.write("
\r\n"); + out.write("

2/3

\r\n"); + out.write(" \r\n"); + out.write("
\r\n"); + out.write("
\r\n"); + out.write(" \r\n"); + out.write("
\r\n"); + out.write(" \r\n"); + out.write("
\r\n"); + out.write("
\r\n"); + out.write("
\r\n"); + out.write("

2/10

\r\n"); + out.write(" \r\n"); + out.write("
\r\n"); + out.write("
\r\n"); + out.write("

2/3

\r\n"); + out.write(" \r\n"); + out.write("
\r\n"); + out.write("
\r\n"); + out.write("

2/3

\r\n"); + out.write(" \r\n"); + out.write("
\r\n"); + out.write("
\r\n"); + out.write(" \r\n"); + out.write("
\r\n"); + out.write("
\r\n"); + out.write("
\r\n"); + out.write("
\r\n"); + out.write("
\r\n"); + out.write("
단속 자료 통계(유형별)
\r\n"); + out.write("
건수(최근 n일)
\r\n"); + out.write("
\r\n"); + out.write("
\r\n"); + out.write(" \r\n"); + out.write("
\r\n"); + out.write(" \r\n"); + out.write("
\r\n"); + out.write(" \r\n"); + out.write("
\r\n"); + out.write("
\r\n"); + out.write("
단속통계
\r\n"); + out.write("
처리유형별(일별)
\r\n"); + out.write("
\r\n"); + out.write("
\r\n"); + out.write(" \r\n"); + out.write("
\r\n"); + out.write(" \r\n"); + out.write("
\r\n"); + out.write(" \r\n"); + out.write("
\r\n"); + out.write("
\r\n"); + out.write("
발송통계
\r\n"); + out.write("
발송유형별(일별)
\r\n"); + out.write("
\r\n"); + out.write("
\r\n"); + out.write(" \r\n"); + out.write("
\r\n"); + out.write(" \r\n"); + out.write("
\r\n"); + out.write(" \r\n"); + out.write("
\r\n"); + out.write("
\r\n"); + out.write("
의견진술통계
\r\n"); + out.write("
처리유형별(일별)
\r\n"); + out.write("
\r\n"); + out.write("
\r\n"); + out.write(" \r\n"); + out.write("
\r\n"); + out.write(" \r\n"); + out.write("
\r\n"); + out.write("
\r\n"); + out.write("\r\n"); + if (_jspx_meth_c_005fset_005f0(_jspx_page_context)) + return; + } catch (java.lang.Throwable t) { + if (!(t instanceof javax.servlet.jsp.SkipPageException)){ + out = _jspx_out; + if (out != null && out.getBufferSize() != 0) + try { + if (response.isCommitted()) { + out.flush(); + } else { + out.clearBuffer(); + } + } catch (java.io.IOException e) {} + if (_jspx_page_context != null) _jspx_page_context.handlePageException(t); + else throw new ServletException(t); + } + } finally { + _jspxFactory.releasePageContext(_jspx_page_context); + } + } + + private boolean _jspx_meth_c_005fset_005f0(javax.servlet.jsp.PageContext _jspx_page_context) + throws java.lang.Throwable { + javax.servlet.jsp.PageContext pageContext = _jspx_page_context; + javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); + // c:set + org.apache.taglibs.standard.tag.rt.core.SetTag _jspx_th_c_005fset_005f0 = (org.apache.taglibs.standard.tag.rt.core.SetTag) _005fjspx_005ftagPool_005fc_005fset_0026_005fvar_005fscope.get(org.apache.taglibs.standard.tag.rt.core.SetTag.class); + boolean _jspx_th_c_005fset_005f0_reused = false; + try { + _jspx_th_c_005fset_005f0.setPageContext(_jspx_page_context); + _jspx_th_c_005fset_005f0.setParent(null); + // /WEB-INF/jsp/include/dashboard.jsp(139,0) name = var type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null + _jspx_th_c_005fset_005f0.setVar("dashboardScript"); + // /WEB-INF/jsp/include/dashboard.jsp(139,0) name = scope type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null + _jspx_th_c_005fset_005f0.setScope("request"); + int _jspx_eval_c_005fset_005f0 = _jspx_th_c_005fset_005f0.doStartTag(); + if (_jspx_eval_c_005fset_005f0 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) { + if (_jspx_eval_c_005fset_005f0 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { + out = org.apache.jasper.runtime.JspRuntimeLibrary.startBufferedBody(_jspx_page_context, _jspx_th_c_005fset_005f0); + } + do { + out.write("\r\n"); + out.write("\r\n"); + out.write("var falseLineChart = `\r\n"); + out.write("\r\n"); + out.write("\r\n"); + out.write("`;\r\n"); + out.write("\r\n"); + out.write("var falseDoughnutChart = `\r\n"); + out.write("\r\n"); + out.write("\r\n"); + out.write("`;\r\n"); + out.write("\r\n"); + out.write("fnMakeSkeleton();\r\n"); + out.write("sleep(3000).then(() => fnLoadStatisticsData());\r\n"); + out.write("\r\n"); + out.write("\r\n"); + out.write("//지연\r\n"); + out.write("function sleep(ms) {\r\n"); + out.write(" return new Promise((r) => setTimeout(r, ms));\r\n"); + out.write("}\r\n"); + out.write("\r\n"); + out.write("//데이터 로딩 전 이미지 표시\r\n"); + out.write("function fnMakeSkeleton(){\r\n"); + out.write("\r\n"); + out.write(" $(\"#lineChart\").hide();\r\n"); + out.write(" $(\"#doughnutChart1\").hide();\r\n"); + out.write(" $(\"#doughnutChart2\").hide();\r\n"); + out.write(" $(\"#doughnutChart3\").hide();\r\n"); + out.write(" \r\n"); + out.write(" $(\"#lineChartCardBody\").append(falseLineChart);\r\n"); + out.write(" $(\"#doughnutChart1CardBody\").append(falseDoughnutChart);\r\n"); + out.write(" $(\"#doughnutChart2CardBody\").append(falseDoughnutChart);\r\n"); + out.write(" $(\"#doughnutChart3CardBody\").append(falseDoughnutChart);\r\n"); + out.write("}\r\n"); + out.write("\r\n"); + out.write("//통계 데이터 조회\r\n"); + out.write("function fnLoadStatisticsData(){\r\n"); + out.write("\r\n"); + out.write(" //TODO : ajax\r\n"); + out.write("\r\n"); + out.write(" var data = {};\r\n"); + out.write(" fnRenderDashboardContents(data);\r\n"); + out.write("}\r\n"); + out.write("\r\n"); + out.write("//콘텐츠(차트) 표시\r\n"); + out.write("function fnRenderDashboardContents(data){\r\n"); + out.write(" $(\"#lineChartCardBody svg\").remove();\r\n"); + out.write(" $(\"#doughnutChart1CardBody svg\").remove();\r\n"); + out.write(" $(\"#doughnutChart2CardBody svg\").remove();\r\n"); + out.write(" $(\"#doughnutChart3CardBody svg\").remove();\r\n"); + out.write(" \r\n"); + out.write(" $(\"#lineChart\").show();\r\n"); + out.write(" $(\"#doughnutChart1\").show();\r\n"); + out.write(" $(\"#doughnutChart2\").show();\r\n"); + out.write(" $(\"#doughnutChart3\").show();\r\n"); + out.write(" \r\n"); + out.write(" // Color Variables\r\n"); + out.write(" const yellowColor = '#ffe800';\r\n"); + out.write(" let borderColor, gridColor, tickColor;\r\n"); + out.write("\r\n"); + out.write(" borderColor = '#f0f0f0';\r\n"); + out.write(" gridColor = '#f0f0f0';\r\n"); + out.write(" tickColor = 'rgba(0, 0, 0, 0.75)'; // x & y axis tick color\r\n"); + out.write("\r\n"); + out.write(" const lineChart = document.getElementById('lineChart');\r\n"); + out.write(" if (lineChart) {\r\n"); + out.write(" const lineChartVar = new Chart(lineChart, {\r\n"); + out.write(" type: 'line',\r\n"); + out.write(" data: {\r\n"); + out.write(" labels: [0, 10, 20, 30, 40, 50, 60, 70, 80, 90, 100, 110, 120, 130, 140],\r\n"); + out.write(" datasets: [\r\n"); + out.write(" {\r\n"); + out.write(" data: [80, 150, 180, 270, 210, 160, 160, 202, 265, 210, 270, 255, 290, 360, 375],\r\n"); + out.write(" label: '고정형',\r\n"); + out.write(" borderColor: config.colors.danger,\r\n"); + out.write(" tension: 0.5,\r\n"); + out.write(" pointStyle: 'circle',\r\n"); + out.write(" backgroundColor: config.colors.danger,\r\n"); + out.write(" fill: false,\r\n"); + out.write(" pointRadius: 1,\r\n"); + out.write(" pointHoverRadius: 5,\r\n"); + out.write(" pointHoverBorderWidth: 5,\r\n"); + out.write(" pointBorderColor: 'transparent',\r\n"); + out.write(" pointHoverBorderColor: config.colors.cardColor,\r\n"); + out.write(" pointHoverBackgroundColor: config.colors.danger\r\n"); + out.write(" },\r\n"); + out.write(" {\r\n"); + out.write(" data: [80, 125, 105, 130, 215, 195, 140, 160, 230, 300, 220, 170, 210, 200, 280],\r\n"); + out.write(" label: '도보',\r\n"); + out.write(" borderColor: config.colors.primary,\r\n"); + out.write(" tension: 0.5,\r\n"); + out.write(" pointStyle: 'circle',\r\n"); + out.write(" backgroundColor: config.colors.primary,\r\n"); + out.write(" fill: false,\r\n"); + out.write(" pointRadius: 1,\r\n"); + out.write(" pointHoverRadius: 5,\r\n"); + out.write(" pointHoverBorderWidth: 5,\r\n"); + out.write(" pointBorderColor: 'transparent',\r\n"); + out.write(" pointHoverBorderColor: config.colors.cardColor,\r\n"); + out.write(" pointHoverBackgroundColor: config.colors.primary\r\n"); + out.write(" },\r\n"); + out.write(" {\r\n"); + out.write(" data: [80, 99, 82, 90, 115, 115, 74, 75, 130, 155, 125, 90, 140, 130, 180],\r\n"); + out.write(" label: '민원',\r\n"); + out.write(" borderColor: yellowColor,\r\n"); + out.write(" tension: 0.5,\r\n"); + out.write(" pointStyle: 'circle',\r\n"); + out.write(" backgroundColor: yellowColor,\r\n"); + out.write(" fill: false,\r\n"); + out.write(" pointRadius: 1,\r\n"); + out.write(" pointHoverRadius: 5,\r\n"); + out.write(" pointHoverBorderWidth: 5,\r\n"); + out.write(" pointBorderColor: 'transparent',\r\n"); + out.write(" pointHoverBorderColor: config.colors.cardColor,\r\n"); + out.write(" pointHoverBackgroundColor: yellowColor\r\n"); + out.write(" }\r\n"); + out.write(" ]\r\n"); + out.write(" },\r\n"); + out.write(" options: {\r\n"); + out.write(" responsive: true,\r\n"); + out.write(" maintainAspectRatio: false,\r\n"); + out.write(" scales: {\r\n"); + out.write(" x: {\r\n"); + out.write(" grid: {\r\n"); + out.write(" color: borderColor,\r\n"); + out.write(" drawBorder: false,\r\n"); + out.write(" borderColor: borderColor\r\n"); + out.write(" },\r\n"); + out.write(" ticks: {\r\n"); + out.write(" color: \"black\"\r\n"); + out.write(" }\r\n"); + out.write(" },\r\n"); + out.write(" y: {\r\n"); + out.write(" scaleLabel: {\r\n"); + out.write(" display: true\r\n"); + out.write(" },\r\n"); + out.write(" min: 0,\r\n"); + out.write(" max: 400,\r\n"); + out.write(" ticks: {\r\n"); + out.write(" color: \"black\",\r\n"); + out.write(" stepSize: 100\r\n"); + out.write(" },\r\n"); + out.write(" grid: {\r\n"); + out.write(" color: borderColor,\r\n"); + out.write(" drawBorder: false,\r\n"); + out.write(" borderColor: borderColor\r\n"); + out.write(" }\r\n"); + out.write(" }\r\n"); + out.write(" },\r\n"); + out.write(" plugins: {\r\n"); + out.write(" tooltip: {\r\n"); + out.write(" rtl: true,\r\n"); + out.write(" backgroundColor: config.colors.cardColor,\r\n"); + out.write(" titleColor: config.colors.headingColor,\r\n"); + out.write(" bodyColor: config.colors.bodyColor,\r\n"); + out.write(" borderWidth: 1,\r\n"); + out.write(" borderColor: borderColor\r\n"); + out.write(" },\r\n"); + out.write(" legend: {\r\n"); + out.write(" position: 'left',\r\n"); + out.write(" align: 'stretch',\r\n"); + out.write(" rtl: true,\r\n"); + out.write(" labels: {\r\n"); + out.write(" usePointStyle: true,\r\n"); + out.write(" padding: 6,\r\n"); + out.write(" boxWidth: 12,\r\n"); + out.write(" boxHeight: 30,\r\n"); + out.write(" color: \"black\"\r\n"); + out.write(" }\r\n"); + out.write(" }\r\n"); + out.write(" }\r\n"); + out.write(" }\r\n"); + out.write(" });\r\n"); + out.write(" }\r\n"); + out.write("\r\n"); + out.write("\r\n"); + out.write(" // Color Variables\r\n"); + out.write(" const cyanColor = '#28dac6',\r\n"); + out.write(" orangeLightColor = '#FDAC34';\r\n"); + out.write(" let cardColor, headingColor, labelColor, legendColor;\r\n"); + out.write("\r\n"); + out.write(" cardColor = config.colors.cardColor;\r\n"); + out.write(" headingColor = config.colors.headingColor;\r\n"); + out.write(" labelColor = config.colors.textMuted;\r\n"); + out.write(" legendColor = config.colors.bodyColor;\r\n"); + out.write("\r\n"); + out.write(" const doughnutChart1 = document.getElementById('doughnutChart1');\r\n"); + out.write(" if (doughnutChart1) {\r\n"); + out.write(" const doughnutChartVar = new Chart(doughnutChart1, {\r\n"); + out.write(" type: 'doughnut',\r\n"); + out.write(" data: {\r\n"); + out.write(" labels: ['단속', '계고', '서손'],\r\n"); + out.write(" datasets: [\r\n"); + out.write(" {\r\n"); + out.write(" data: [10, 10, 80],\r\n"); + out.write(" backgroundColor: [cyanColor, orangeLightColor, config.colors.primary],\r\n"); + out.write(" borderWidth: 0,\r\n"); + out.write(" pointStyle: 'rectRounded'\r\n"); + out.write(" }\r\n"); + out.write(" ]\r\n"); + out.write(" },\r\n"); + out.write(" options: {\r\n"); + out.write(" responsive: true,\r\n"); + out.write(" animation: {\r\n"); + out.write(" duration: 500\r\n"); + out.write(" },\r\n"); + out.write(" cutout: '68%',\r\n"); + out.write(" plugins: {\r\n"); + out.write(" legend: {\r\n"); + out.write(" display: true,\r\n"); + out.write(" position : 'left'\r\n"); + out.write(" },\r\n"); + out.write(" tooltip: {\r\n"); + out.write(" callbacks: {\r\n"); + out.write(" label: function (context) {\r\n"); + out.write(" const label = context.label || '';\r\n"); + out.write(" const value = context.parsed;\r\n"); + out.write(" const output = ' ' + label + ' : ' + value + ' %';\r\n"); + out.write(" return output;\r\n"); + out.write(" }\r\n"); + out.write(" },\r\n"); + out.write(" // Updated default tooltip UI\r\n"); + out.write(" rtl: true,\r\n"); + out.write(" backgroundColor: cardColor,\r\n"); + out.write(" titleColor: headingColor,\r\n"); + out.write(" bodyColor: legendColor,\r\n"); + out.write(" borderWidth: 1,\r\n"); + out.write(" borderColor: borderColor\r\n"); + out.write(" }\r\n"); + out.write(" }\r\n"); + out.write(" }\r\n"); + out.write(" });\r\n"); + out.write(" }\r\n"); + out.write("\r\n"); + out.write(" const doughnutChart2 = document.getElementById('doughnutChart2');\r\n"); + out.write(" if (doughnutChart2) {\r\n"); + out.write(" const doughnutChartVar = new Chart(doughnutChart2, {\r\n"); + out.write(" type: 'doughnut',\r\n"); + out.write(" data: {\r\n"); + out.write(" labels: ['계고장', '사전통보', '고지서'],\r\n"); + out.write(" datasets: [\r\n"); + out.write(" {\r\n"); + out.write(" data: [10, 10, 80],\r\n"); + out.write(" backgroundColor: [cyanColor, orangeLightColor, config.colors.primary],\r\n"); + out.write(" borderWidth: 0,\r\n"); + out.write(" pointStyle: 'rectRounded'\r\n"); + out.write(" }\r\n"); + out.write(" ]\r\n"); + out.write(" },\r\n"); + out.write(" options: {\r\n"); + out.write(" responsive: true,\r\n"); + out.write(" animation: {\r\n"); + out.write(" duration: 500\r\n"); + out.write(" },\r\n"); + out.write(" cutout: '68%',\r\n"); + out.write(" plugins: {\r\n"); + out.write(" legend: {\r\n"); + out.write(" display: true,\r\n"); + out.write(" position : 'left'\r\n"); + out.write(" },\r\n"); + out.write(" tooltip: {\r\n"); + out.write(" callbacks: {\r\n"); + out.write(" label: function (context) {\r\n"); + out.write(" const label = context.label || '';\r\n"); + out.write(" const value = context.parsed;\r\n"); + out.write(" const output = ' ' + label + ' : ' + value + ' %';\r\n"); + out.write(" return output;\r\n"); + out.write(" }\r\n"); + out.write(" },\r\n"); + out.write(" // Updated default tooltip UI\r\n"); + out.write(" rtl: true,\r\n"); + out.write(" backgroundColor: cardColor,\r\n"); + out.write(" titleColor: headingColor,\r\n"); + out.write(" bodyColor: legendColor,\r\n"); + out.write(" borderWidth: 1,\r\n"); + out.write(" borderColor: borderColor\r\n"); + out.write(" }\r\n"); + out.write(" }\r\n"); + out.write(" }\r\n"); + out.write(" });\r\n"); + out.write(" }\r\n"); + out.write("\r\n"); + out.write(" const doughnutChart3 = document.getElementById('doughnutChart3');\r\n"); + out.write(" if (doughnutChart3) {\r\n"); + out.write(" const doughnutChartVar = new Chart(doughnutChart3, {\r\n"); + out.write(" type: 'doughnut',\r\n"); + out.write(" data: {\r\n"); + out.write(" labels: ['수용', '미수용', '자진취하'],\r\n"); + out.write(" datasets: [\r\n"); + out.write(" {\r\n"); + out.write(" data: [10, 10, 80],\r\n"); + out.write(" backgroundColor: [cyanColor, orangeLightColor, config.colors.primary],\r\n"); + out.write(" borderWidth: 0,\r\n"); + out.write(" pointStyle: 'rectRounded'\r\n"); + out.write(" }\r\n"); + out.write(" ]\r\n"); + out.write(" },\r\n"); + out.write(" options: {\r\n"); + out.write(" responsive: true,\r\n"); + out.write(" animation: {\r\n"); + out.write(" duration: 500\r\n"); + out.write(" },\r\n"); + out.write(" cutout: '68%',\r\n"); + out.write(" plugins: {\r\n"); + out.write(" legend: {\r\n"); + out.write(" display: true,\r\n"); + out.write(" position : 'left'\r\n"); + out.write(" },\r\n"); + out.write(" tooltip: {\r\n"); + out.write(" callbacks: {\r\n"); + out.write(" label: function (context) {\r\n"); + out.write(" const label = context.label || '';\r\n"); + out.write(" const value = context.parsed;\r\n"); + out.write(" const output = ' ' + label + ' : ' + value + ' %';\r\n"); + out.write(" return output;\r\n"); + out.write(" }\r\n"); + out.write(" },\r\n"); + out.write(" // Updated default tooltip UI\r\n"); + out.write(" rtl: true,\r\n"); + out.write(" backgroundColor: cardColor,\r\n"); + out.write(" titleColor: headingColor,\r\n"); + out.write(" bodyColor: legendColor,\r\n"); + out.write(" borderWidth: 1,\r\n"); + out.write(" borderColor: borderColor\r\n"); + out.write(" }\r\n"); + out.write(" }\r\n"); + out.write(" }\r\n"); + out.write(" });\r\n"); + out.write(" }\r\n"); + out.write("}\r\n"); + out.write("\r\n"); + out.write("\r\n"); + int evalDoAfterBody = _jspx_th_c_005fset_005f0.doAfterBody(); + if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN) + break; + } while (true); + if (_jspx_eval_c_005fset_005f0 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { + out = _jspx_page_context.popBody(); + } + } + if (_jspx_th_c_005fset_005f0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { + return true; + } + _005fjspx_005ftagPool_005fc_005fset_0026_005fvar_005fscope.reuse(_jspx_th_c_005fset_005f0); + _jspx_th_c_005fset_005f0_reused = true; + } finally { + org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_c_005fset_005f0, _jsp_getInstanceManager(), _jspx_th_c_005fset_005f0_reused); + } + return false; + } +} diff --git a/work/Tomcat/localhost/ROOT/org/apache/jsp/WEB_002dINF/jsp/include/head_jsp.class b/work/Tomcat/localhost/ROOT/org/apache/jsp/WEB_002dINF/jsp/include/head_jsp.class new file mode 100644 index 00000000..b7ff6d49 Binary files /dev/null and b/work/Tomcat/localhost/ROOT/org/apache/jsp/WEB_002dINF/jsp/include/head_jsp.class differ diff --git a/work/Tomcat/localhost/ROOT/org/apache/jsp/WEB_002dINF/jsp/include/head_jsp.java b/work/Tomcat/localhost/ROOT/org/apache/jsp/WEB_002dINF/jsp/include/head_jsp.java new file mode 100644 index 00000000..ca17866f --- /dev/null +++ b/work/Tomcat/localhost/ROOT/org/apache/jsp/WEB_002dINF/jsp/include/head_jsp.java @@ -0,0 +1,621 @@ +/* + * Generated by the Jasper component of Apache Tomcat + * Version: Apache Tomcat/9.0.75 + * Generated at: 2023-10-10 04:27:22 UTC + * Note: The last modified time of this file was set to + * the last modified time of the source file after + * generation to assist with modification tracking. + */ +package org.apache.jsp.WEB_002dINF.jsp.include; + +import javax.servlet.*; +import javax.servlet.http.*; +import javax.servlet.jsp.*; + +public final class head_jsp extends org.apache.jasper.runtime.HttpJspBase + implements org.apache.jasper.runtime.JspSourceDependent, + org.apache.jasper.runtime.JspSourceImports { + + private static final javax.servlet.jsp.JspFactory _jspxFactory = + javax.servlet.jsp.JspFactory.getDefaultFactory(); + + private static java.util.Map _jspx_dependants; + + static { + _jspx_dependants = new java.util.HashMap(5); + _jspx_dependants.put("/WEB-INF/jsp/include/taglib.jsp", Long.valueOf(1696469747129L)); + _jspx_dependants.put("jar:file:/D:/repo/javax/servlet/jstl/1.2/jstl-1.2.jar!/META-INF/fmt.tld", Long.valueOf(1153352682000L)); + _jspx_dependants.put("file:/D:/repo/javax/servlet/jstl/1.2/jstl-1.2.jar", Long.valueOf(1678766202128L)); + _jspx_dependants.put("jar:file:/D:/repo/javax/servlet/jstl/1.2/jstl-1.2.jar!/META-INF/fn.tld", Long.valueOf(1153352682000L)); + _jspx_dependants.put("jar:file:/D:/repo/javax/servlet/jstl/1.2/jstl-1.2.jar!/META-INF/c.tld", Long.valueOf(1153352682000L)); + } + + private static final java.util.Set _jspx_imports_packages; + + private static final java.util.Set _jspx_imports_classes; + + static { + _jspx_imports_packages = new java.util.HashSet<>(); + _jspx_imports_packages.add("javax.servlet"); + _jspx_imports_packages.add("javax.servlet.http"); + _jspx_imports_packages.add("javax.servlet.jsp"); + _jspx_imports_classes = null; + } + + private org.apache.jasper.runtime.TagHandlerPool _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody; + + private volatile javax.el.ExpressionFactory _el_expressionfactory; + private volatile org.apache.tomcat.InstanceManager _jsp_instancemanager; + + public java.util.Map getDependants() { + return _jspx_dependants; + } + + public java.util.Set getPackageImports() { + return _jspx_imports_packages; + } + + public java.util.Set getClassImports() { + return _jspx_imports_classes; + } + + public javax.el.ExpressionFactory _jsp_getExpressionFactory() { + if (_el_expressionfactory == null) { + synchronized (this) { + if (_el_expressionfactory == null) { + _el_expressionfactory = _jspxFactory.getJspApplicationContext(getServletConfig().getServletContext()).getExpressionFactory(); + } + } + } + return _el_expressionfactory; + } + + public org.apache.tomcat.InstanceManager _jsp_getInstanceManager() { + if (_jsp_instancemanager == null) { + synchronized (this) { + if (_jsp_instancemanager == null) { + _jsp_instancemanager = org.apache.jasper.runtime.InstanceManagerFactory.getInstanceManager(getServletConfig()); + } + } + } + return _jsp_instancemanager; + } + + public void _jspInit() { + _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody = org.apache.jasper.runtime.TagHandlerPool.getTagHandlerPool(getServletConfig()); + } + + public void _jspDestroy() { + _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.release(); + } + + public void _jspService(final javax.servlet.http.HttpServletRequest request, final javax.servlet.http.HttpServletResponse response) + throws java.io.IOException, javax.servlet.ServletException { + + if (!javax.servlet.DispatcherType.ERROR.equals(request.getDispatcherType())) { + final java.lang.String _jspx_method = request.getMethod(); + if ("OPTIONS".equals(_jspx_method)) { + response.setHeader("Allow","GET, HEAD, POST, OPTIONS"); + return; + } + if (!"GET".equals(_jspx_method) && !"POST".equals(_jspx_method) && !"HEAD".equals(_jspx_method)) { + response.setHeader("Allow","GET, HEAD, POST, OPTIONS"); + response.sendError(HttpServletResponse.SC_METHOD_NOT_ALLOWED, "JSPs only permit GET, POST or HEAD. Jasper also permits OPTIONS"); + return; + } + } + + final javax.servlet.jsp.PageContext pageContext; + final javax.servlet.ServletContext application; + final javax.servlet.ServletConfig config; + javax.servlet.jsp.JspWriter out = null; + final java.lang.Object page = this; + javax.servlet.jsp.JspWriter _jspx_out = null; + javax.servlet.jsp.PageContext _jspx_page_context = null; + + + try { + response.setContentType("text/html; charset=UTF-8"); + pageContext = _jspxFactory.getPageContext(this, request, response, + null, false, 8192, true); + _jspx_page_context = pageContext; + application = pageContext.getServletContext(); + config = pageContext.getServletConfig(); + out = pageContext.getOut(); + _jspx_out = out; + + out.write('\r'); + out.write('\n'); + out.write('\r'); + out.write('\n'); + out.write("\r\n"); + out.write("\r\n"); + out.write("\r\n"); + out.write("\r\n"); + out.write(" \r\n"); + out.write(" 과태료통합관리시스템\r\n"); + out.write("\r\n"); + out.write(" \r\n"); + out.write(" \r\n"); + out.write("\r\n"); + out.write(" \r\n"); + out.write(" \r\n"); + out.write(" \r\n"); + out.write(" \r\n"); + out.write(" \r\n"); + out.write(" \r\n"); + out.write(" \r\n"); + out.write(" \r\n"); + out.write(" \r\n"); + out.write(" \r\n"); + out.write(" \r\n"); + out.write(" \r\n"); + out.write(" \r\n"); + out.write("\r\n"); + out.write(" \r\n"); + out.write(" \r\n"); + out.write(" \r\n"); + out.write("\r\n"); + out.write(" \r\n"); + out.write(" \r\n"); + out.write(" \r\n"); + out.write("\r\n"); + out.write("\r\n"); + out.write("\r\n"); + } catch (java.lang.Throwable t) { + if (!(t instanceof javax.servlet.jsp.SkipPageException)){ + out = _jspx_out; + if (out != null && out.getBufferSize() != 0) + try { + if (response.isCommitted()) { + out.flush(); + } else { + out.clearBuffer(); + } + } catch (java.io.IOException e) {} + if (_jspx_page_context != null) _jspx_page_context.handlePageException(t); + else throw new ServletException(t); + } + } finally { + _jspxFactory.releasePageContext(_jspx_page_context); + } + } + + private boolean _jspx_meth_c_005furl_005f0(javax.servlet.jsp.PageContext _jspx_page_context) + throws java.lang.Throwable { + javax.servlet.jsp.PageContext pageContext = _jspx_page_context; + javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); + // c:url + org.apache.taglibs.standard.tag.rt.core.UrlTag _jspx_th_c_005furl_005f0 = (org.apache.taglibs.standard.tag.rt.core.UrlTag) _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.get(org.apache.taglibs.standard.tag.rt.core.UrlTag.class); + boolean _jspx_th_c_005furl_005f0_reused = false; + try { + _jspx_th_c_005furl_005f0.setPageContext(_jspx_page_context); + _jspx_th_c_005furl_005f0.setParent(null); + // /WEB-INF/jsp/include/head.jsp(9,20) name = value type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null + _jspx_th_c_005furl_005f0.setValue("/resources/"); + int _jspx_eval_c_005furl_005f0 = _jspx_th_c_005furl_005f0.doStartTag(); + if (_jspx_th_c_005furl_005f0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { + return true; + } + _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.reuse(_jspx_th_c_005furl_005f0); + _jspx_th_c_005furl_005f0_reused = true; + } finally { + org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_c_005furl_005f0, _jsp_getInstanceManager(), _jspx_th_c_005furl_005f0_reused); + } + return false; + } + + private boolean _jspx_meth_c_005furl_005f1(javax.servlet.jsp.PageContext _jspx_page_context) + throws java.lang.Throwable { + javax.servlet.jsp.PageContext pageContext = _jspx_page_context; + javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); + // c:url + org.apache.taglibs.standard.tag.rt.core.UrlTag _jspx_th_c_005furl_005f1 = (org.apache.taglibs.standard.tag.rt.core.UrlTag) _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.get(org.apache.taglibs.standard.tag.rt.core.UrlTag.class); + boolean _jspx_th_c_005furl_005f1_reused = false; + try { + _jspx_th_c_005furl_005f1.setPageContext(_jspx_page_context); + _jspx_th_c_005furl_005f1.setParent(null); + // /WEB-INF/jsp/include/head.jsp(16,44) name = value type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null + _jspx_th_c_005furl_005f1.setValue("/resources/image/favicon.ico"); + int _jspx_eval_c_005furl_005f1 = _jspx_th_c_005furl_005f1.doStartTag(); + if (_jspx_th_c_005furl_005f1.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { + return true; + } + _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.reuse(_jspx_th_c_005furl_005f1); + _jspx_th_c_005furl_005f1_reused = true; + } finally { + org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_c_005furl_005f1, _jsp_getInstanceManager(), _jspx_th_c_005furl_005f1_reused); + } + return false; + } + + private boolean _jspx_meth_c_005furl_005f2(javax.servlet.jsp.PageContext _jspx_page_context) + throws java.lang.Throwable { + javax.servlet.jsp.PageContext pageContext = _jspx_page_context; + javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); + // c:url + org.apache.taglibs.standard.tag.rt.core.UrlTag _jspx_th_c_005furl_005f2 = (org.apache.taglibs.standard.tag.rt.core.UrlTag) _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.get(org.apache.taglibs.standard.tag.rt.core.UrlTag.class); + boolean _jspx_th_c_005furl_005f2_reused = false; + try { + _jspx_th_c_005furl_005f2.setPageContext(_jspx_page_context); + _jspx_th_c_005furl_005f2.setParent(null); + // /WEB-INF/jsp/include/head.jsp(19,30) name = value type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null + _jspx_th_c_005furl_005f2.setValue("/resources/font/publicsans/fontface.css"); + int _jspx_eval_c_005furl_005f2 = _jspx_th_c_005furl_005f2.doStartTag(); + if (_jspx_th_c_005furl_005f2.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { + return true; + } + _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.reuse(_jspx_th_c_005furl_005f2); + _jspx_th_c_005furl_005f2_reused = true; + } finally { + org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_c_005furl_005f2, _jsp_getInstanceManager(), _jspx_th_c_005furl_005f2_reused); + } + return false; + } + + private boolean _jspx_meth_c_005furl_005f3(javax.servlet.jsp.PageContext _jspx_page_context) + throws java.lang.Throwable { + javax.servlet.jsp.PageContext pageContext = _jspx_page_context; + javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); + // c:url + org.apache.taglibs.standard.tag.rt.core.UrlTag _jspx_th_c_005furl_005f3 = (org.apache.taglibs.standard.tag.rt.core.UrlTag) _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.get(org.apache.taglibs.standard.tag.rt.core.UrlTag.class); + boolean _jspx_th_c_005furl_005f3_reused = false; + try { + _jspx_th_c_005furl_005f3.setPageContext(_jspx_page_context); + _jspx_th_c_005furl_005f3.setParent(null); + // /WEB-INF/jsp/include/head.jsp(22,30) name = value type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null + _jspx_th_c_005furl_005f3.setValue("/resources/3rd-party/sneat/fonts/boxicons.css"); + int _jspx_eval_c_005furl_005f3 = _jspx_th_c_005furl_005f3.doStartTag(); + if (_jspx_th_c_005furl_005f3.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { + return true; + } + _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.reuse(_jspx_th_c_005furl_005f3); + _jspx_th_c_005furl_005f3_reused = true; + } finally { + org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_c_005furl_005f3, _jsp_getInstanceManager(), _jspx_th_c_005furl_005f3_reused); + } + return false; + } + + private boolean _jspx_meth_c_005furl_005f4(javax.servlet.jsp.PageContext _jspx_page_context) + throws java.lang.Throwable { + javax.servlet.jsp.PageContext pageContext = _jspx_page_context; + javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); + // c:url + org.apache.taglibs.standard.tag.rt.core.UrlTag _jspx_th_c_005furl_005f4 = (org.apache.taglibs.standard.tag.rt.core.UrlTag) _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.get(org.apache.taglibs.standard.tag.rt.core.UrlTag.class); + boolean _jspx_th_c_005furl_005f4_reused = false; + try { + _jspx_th_c_005furl_005f4.setPageContext(_jspx_page_context); + _jspx_th_c_005furl_005f4.setParent(null); + // /WEB-INF/jsp/include/head.jsp(23,30) name = value type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null + _jspx_th_c_005furl_005f4.setValue("/resources/3rd-party/sneat/fonts/fontawesome.css"); + int _jspx_eval_c_005furl_005f4 = _jspx_th_c_005furl_005f4.doStartTag(); + if (_jspx_th_c_005furl_005f4.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { + return true; + } + _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.reuse(_jspx_th_c_005furl_005f4); + _jspx_th_c_005furl_005f4_reused = true; + } finally { + org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_c_005furl_005f4, _jsp_getInstanceManager(), _jspx_th_c_005furl_005f4_reused); + } + return false; + } + + private boolean _jspx_meth_c_005furl_005f5(javax.servlet.jsp.PageContext _jspx_page_context) + throws java.lang.Throwable { + javax.servlet.jsp.PageContext pageContext = _jspx_page_context; + javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); + // c:url + org.apache.taglibs.standard.tag.rt.core.UrlTag _jspx_th_c_005furl_005f5 = (org.apache.taglibs.standard.tag.rt.core.UrlTag) _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.get(org.apache.taglibs.standard.tag.rt.core.UrlTag.class); + boolean _jspx_th_c_005furl_005f5_reused = false; + try { + _jspx_th_c_005furl_005f5.setPageContext(_jspx_page_context); + _jspx_th_c_005furl_005f5.setParent(null); + // /WEB-INF/jsp/include/head.jsp(24,30) name = value type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null + _jspx_th_c_005furl_005f5.setValue("/resources/3rd-party/sneat/fonts/flag-icons.css"); + int _jspx_eval_c_005furl_005f5 = _jspx_th_c_005furl_005f5.doStartTag(); + if (_jspx_th_c_005furl_005f5.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { + return true; + } + _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.reuse(_jspx_th_c_005furl_005f5); + _jspx_th_c_005furl_005f5_reused = true; + } finally { + org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_c_005furl_005f5, _jsp_getInstanceManager(), _jspx_th_c_005furl_005f5_reused); + } + return false; + } + + private boolean _jspx_meth_c_005furl_005f6(javax.servlet.jsp.PageContext _jspx_page_context) + throws java.lang.Throwable { + javax.servlet.jsp.PageContext pageContext = _jspx_page_context; + javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); + // c:url + org.apache.taglibs.standard.tag.rt.core.UrlTag _jspx_th_c_005furl_005f6 = (org.apache.taglibs.standard.tag.rt.core.UrlTag) _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.get(org.apache.taglibs.standard.tag.rt.core.UrlTag.class); + boolean _jspx_th_c_005furl_005f6_reused = false; + try { + _jspx_th_c_005furl_005f6.setPageContext(_jspx_page_context); + _jspx_th_c_005furl_005f6.setParent(null); + // /WEB-INF/jsp/include/head.jsp(25,30) name = value type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null + _jspx_th_c_005furl_005f6.setValue("/resources/css/fims/framework/common/xit-icon.css"); + int _jspx_eval_c_005furl_005f6 = _jspx_th_c_005furl_005f6.doStartTag(); + if (_jspx_th_c_005furl_005f6.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { + return true; + } + _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.reuse(_jspx_th_c_005furl_005f6); + _jspx_th_c_005furl_005f6_reused = true; + } finally { + org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_c_005furl_005f6, _jsp_getInstanceManager(), _jspx_th_c_005furl_005f6_reused); + } + return false; + } + + private boolean _jspx_meth_c_005furl_005f7(javax.servlet.jsp.PageContext _jspx_page_context) + throws java.lang.Throwable { + javax.servlet.jsp.PageContext pageContext = _jspx_page_context; + javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); + // c:url + org.apache.taglibs.standard.tag.rt.core.UrlTag _jspx_th_c_005furl_005f7 = (org.apache.taglibs.standard.tag.rt.core.UrlTag) _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.get(org.apache.taglibs.standard.tag.rt.core.UrlTag.class); + boolean _jspx_th_c_005furl_005f7_reused = false; + try { + _jspx_th_c_005furl_005f7.setPageContext(_jspx_page_context); + _jspx_th_c_005furl_005f7.setParent(null); + // /WEB-INF/jsp/include/head.jsp(27,30) name = value type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null + _jspx_th_c_005furl_005f7.setValue("/resources/css/fims/framework/common/xit-core.css"); + int _jspx_eval_c_005furl_005f7 = _jspx_th_c_005furl_005f7.doStartTag(); + if (_jspx_th_c_005furl_005f7.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { + return true; + } + _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.reuse(_jspx_th_c_005furl_005f7); + _jspx_th_c_005furl_005f7_reused = true; + } finally { + org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_c_005furl_005f7, _jsp_getInstanceManager(), _jspx_th_c_005furl_005f7_reused); + } + return false; + } + + private boolean _jspx_meth_c_005furl_005f8(javax.servlet.jsp.PageContext _jspx_page_context) + throws java.lang.Throwable { + javax.servlet.jsp.PageContext pageContext = _jspx_page_context; + javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); + // c:url + org.apache.taglibs.standard.tag.rt.core.UrlTag _jspx_th_c_005furl_005f8 = (org.apache.taglibs.standard.tag.rt.core.UrlTag) _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.get(org.apache.taglibs.standard.tag.rt.core.UrlTag.class); + boolean _jspx_th_c_005furl_005f8_reused = false; + try { + _jspx_th_c_005furl_005f8.setPageContext(_jspx_page_context); + _jspx_th_c_005furl_005f8.setParent(null); + // /WEB-INF/jsp/include/head.jsp(28,30) name = value type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null + _jspx_th_c_005furl_005f8.setValue("/resources/3rd-party/sneat/css/theme-default.css"); + int _jspx_eval_c_005furl_005f8 = _jspx_th_c_005furl_005f8.doStartTag(); + if (_jspx_th_c_005furl_005f8.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { + return true; + } + _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.reuse(_jspx_th_c_005furl_005f8); + _jspx_th_c_005furl_005f8_reused = true; + } finally { + org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_c_005furl_005f8, _jsp_getInstanceManager(), _jspx_th_c_005furl_005f8_reused); + } + return false; + } + + private boolean _jspx_meth_c_005furl_005f9(javax.servlet.jsp.PageContext _jspx_page_context) + throws java.lang.Throwable { + javax.servlet.jsp.PageContext pageContext = _jspx_page_context; + javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); + // c:url + org.apache.taglibs.standard.tag.rt.core.UrlTag _jspx_th_c_005furl_005f9 = (org.apache.taglibs.standard.tag.rt.core.UrlTag) _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.get(org.apache.taglibs.standard.tag.rt.core.UrlTag.class); + boolean _jspx_th_c_005furl_005f9_reused = false; + try { + _jspx_th_c_005furl_005f9.setPageContext(_jspx_page_context); + _jspx_th_c_005furl_005f9.setParent(null); + // /WEB-INF/jsp/include/head.jsp(29,30) name = value type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null + _jspx_th_c_005furl_005f9.setValue("/resources/3rd-party/sneat/css/docs.css"); + int _jspx_eval_c_005furl_005f9 = _jspx_th_c_005furl_005f9.doStartTag(); + if (_jspx_th_c_005furl_005f9.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { + return true; + } + _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.reuse(_jspx_th_c_005furl_005f9); + _jspx_th_c_005furl_005f9_reused = true; + } finally { + org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_c_005furl_005f9, _jsp_getInstanceManager(), _jspx_th_c_005furl_005f9_reused); + } + return false; + } + + private boolean _jspx_meth_c_005furl_005f10(javax.servlet.jsp.PageContext _jspx_page_context) + throws java.lang.Throwable { + javax.servlet.jsp.PageContext pageContext = _jspx_page_context; + javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); + // c:url + org.apache.taglibs.standard.tag.rt.core.UrlTag _jspx_th_c_005furl_005f10 = (org.apache.taglibs.standard.tag.rt.core.UrlTag) _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.get(org.apache.taglibs.standard.tag.rt.core.UrlTag.class); + boolean _jspx_th_c_005furl_005f10_reused = false; + try { + _jspx_th_c_005furl_005f10.setPageContext(_jspx_page_context); + _jspx_th_c_005furl_005f10.setParent(null); + // /WEB-INF/jsp/include/head.jsp(30,30) name = value type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null + _jspx_th_c_005furl_005f10.setValue("/resources/css/fims/framework/common/xit-core-extend.css"); + int _jspx_eval_c_005furl_005f10 = _jspx_th_c_005furl_005f10.doStartTag(); + if (_jspx_th_c_005furl_005f10.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { + return true; + } + _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.reuse(_jspx_th_c_005furl_005f10); + _jspx_th_c_005furl_005f10_reused = true; + } finally { + org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_c_005furl_005f10, _jsp_getInstanceManager(), _jspx_th_c_005furl_005f10_reused); + } + return false; + } + + private boolean _jspx_meth_c_005furl_005f11(javax.servlet.jsp.PageContext _jspx_page_context) + throws java.lang.Throwable { + javax.servlet.jsp.PageContext pageContext = _jspx_page_context; + javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); + // c:url + org.apache.taglibs.standard.tag.rt.core.UrlTag _jspx_th_c_005furl_005f11 = (org.apache.taglibs.standard.tag.rt.core.UrlTag) _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.get(org.apache.taglibs.standard.tag.rt.core.UrlTag.class); + boolean _jspx_th_c_005furl_005f11_reused = false; + try { + _jspx_th_c_005furl_005f11.setPageContext(_jspx_page_context); + _jspx_th_c_005furl_005f11.setParent(null); + // /WEB-INF/jsp/include/head.jsp(33,30) name = value type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null + _jspx_th_c_005furl_005f11.setValue("/resources/3rd-party/sneat/libs/perfect-scrollbar/perfect-scrollbar.css"); + int _jspx_eval_c_005furl_005f11 = _jspx_th_c_005furl_005f11.doStartTag(); + if (_jspx_th_c_005furl_005f11.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { + return true; + } + _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.reuse(_jspx_th_c_005furl_005f11); + _jspx_th_c_005furl_005f11_reused = true; + } finally { + org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_c_005furl_005f11, _jsp_getInstanceManager(), _jspx_th_c_005furl_005f11_reused); + } + return false; + } + + private boolean _jspx_meth_c_005furl_005f12(javax.servlet.jsp.PageContext _jspx_page_context) + throws java.lang.Throwable { + javax.servlet.jsp.PageContext pageContext = _jspx_page_context; + javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); + // c:url + org.apache.taglibs.standard.tag.rt.core.UrlTag _jspx_th_c_005furl_005f12 = (org.apache.taglibs.standard.tag.rt.core.UrlTag) _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.get(org.apache.taglibs.standard.tag.rt.core.UrlTag.class); + boolean _jspx_th_c_005furl_005f12_reused = false; + try { + _jspx_th_c_005furl_005f12.setPageContext(_jspx_page_context); + _jspx_th_c_005furl_005f12.setParent(null); + // /WEB-INF/jsp/include/head.jsp(34,30) name = value type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null + _jspx_th_c_005furl_005f12.setValue("/resources/css/styles.css"); + int _jspx_eval_c_005furl_005f12 = _jspx_th_c_005furl_005f12.doStartTag(); + if (_jspx_th_c_005furl_005f12.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { + return true; + } + _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.reuse(_jspx_th_c_005furl_005f12); + _jspx_th_c_005furl_005f12_reused = true; + } finally { + org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_c_005furl_005f12, _jsp_getInstanceManager(), _jspx_th_c_005furl_005f12_reused); + } + return false; + } + + private boolean _jspx_meth_c_005furl_005f13(javax.servlet.jsp.PageContext _jspx_page_context) + throws java.lang.Throwable { + javax.servlet.jsp.PageContext pageContext = _jspx_page_context; + javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); + // c:url + org.apache.taglibs.standard.tag.rt.core.UrlTag _jspx_th_c_005furl_005f13 = (org.apache.taglibs.standard.tag.rt.core.UrlTag) _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.get(org.apache.taglibs.standard.tag.rt.core.UrlTag.class); + boolean _jspx_th_c_005furl_005f13_reused = false; + try { + _jspx_th_c_005furl_005f13.setPageContext(_jspx_page_context); + _jspx_th_c_005furl_005f13.setParent(null); + // /WEB-INF/jsp/include/head.jsp(36,30) name = value type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null + _jspx_th_c_005furl_005f13.setValue("/resources/css/fims/framework/common/common.css"); + int _jspx_eval_c_005furl_005f13 = _jspx_th_c_005furl_005f13.doStartTag(); + if (_jspx_th_c_005furl_005f13.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { + return true; + } + _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.reuse(_jspx_th_c_005furl_005f13); + _jspx_th_c_005furl_005f13_reused = true; + } finally { + org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_c_005furl_005f13, _jsp_getInstanceManager(), _jspx_th_c_005furl_005f13_reused); + } + return false; + } + + private boolean _jspx_meth_c_005furl_005f14(javax.servlet.jsp.PageContext _jspx_page_context) + throws java.lang.Throwable { + javax.servlet.jsp.PageContext pageContext = _jspx_page_context; + javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); + // c:url + org.apache.taglibs.standard.tag.rt.core.UrlTag _jspx_th_c_005furl_005f14 = (org.apache.taglibs.standard.tag.rt.core.UrlTag) _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.get(org.apache.taglibs.standard.tag.rt.core.UrlTag.class); + boolean _jspx_th_c_005furl_005f14_reused = false; + try { + _jspx_th_c_005furl_005f14.setPageContext(_jspx_page_context); + _jspx_th_c_005furl_005f14.setParent(null); + // /WEB-INF/jsp/include/head.jsp(37,30) name = value type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null + _jspx_th_c_005furl_005f14.setValue("/resources/lib/fims/framework/jquery-ui/1.13.2/themes/redmond/jquery-ui.css"); + int _jspx_eval_c_005furl_005f14 = _jspx_th_c_005furl_005f14.doStartTag(); + if (_jspx_th_c_005furl_005f14.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { + return true; + } + _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.reuse(_jspx_th_c_005furl_005f14); + _jspx_th_c_005furl_005f14_reused = true; + } finally { + org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_c_005furl_005f14, _jsp_getInstanceManager(), _jspx_th_c_005furl_005f14_reused); + } + return false; + } + + private boolean _jspx_meth_c_005furl_005f15(javax.servlet.jsp.PageContext _jspx_page_context) + throws java.lang.Throwable { + javax.servlet.jsp.PageContext pageContext = _jspx_page_context; + javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); + // c:url + org.apache.taglibs.standard.tag.rt.core.UrlTag _jspx_th_c_005furl_005f15 = (org.apache.taglibs.standard.tag.rt.core.UrlTag) _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.get(org.apache.taglibs.standard.tag.rt.core.UrlTag.class); + boolean _jspx_th_c_005furl_005f15_reused = false; + try { + _jspx_th_c_005furl_005f15.setPageContext(_jspx_page_context); + _jspx_th_c_005furl_005f15.setParent(null); + // /WEB-INF/jsp/include/head.jsp(38,30) name = value type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null + _jspx_th_c_005furl_005f15.setValue("/resources/lib/fims/framework/datepicker/datepicker.css"); + int _jspx_eval_c_005furl_005f15 = _jspx_th_c_005furl_005f15.doStartTag(); + if (_jspx_th_c_005furl_005f15.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { + return true; + } + _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.reuse(_jspx_th_c_005furl_005f15); + _jspx_th_c_005furl_005f15_reused = true; + } finally { + org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_c_005furl_005f15, _jsp_getInstanceManager(), _jspx_th_c_005furl_005f15_reused); + } + return false; + } +} diff --git a/work/Tomcat/localhost/ROOT/org/apache/jsp/WEB_002dINF/jsp/include/tail_jsp.class b/work/Tomcat/localhost/ROOT/org/apache/jsp/WEB_002dINF/jsp/include/tail_jsp.class new file mode 100644 index 00000000..0271c6b8 Binary files /dev/null and b/work/Tomcat/localhost/ROOT/org/apache/jsp/WEB_002dINF/jsp/include/tail_jsp.class differ diff --git a/work/Tomcat/localhost/ROOT/org/apache/jsp/WEB_002dINF/jsp/include/tail_jsp.java b/work/Tomcat/localhost/ROOT/org/apache/jsp/WEB_002dINF/jsp/include/tail_jsp.java new file mode 100644 index 00000000..72256421 --- /dev/null +++ b/work/Tomcat/localhost/ROOT/org/apache/jsp/WEB_002dINF/jsp/include/tail_jsp.java @@ -0,0 +1,1304 @@ +/* + * Generated by the Jasper component of Apache Tomcat + * Version: Apache Tomcat/9.0.75 + * Generated at: 2023-10-10 04:27:23 UTC + * Note: The last modified time of this file was set to + * the last modified time of the source file after + * generation to assist with modification tracking. + */ +package org.apache.jsp.WEB_002dINF.jsp.include; + +import javax.servlet.*; +import javax.servlet.http.*; +import javax.servlet.jsp.*; + +public final class tail_jsp extends org.apache.jasper.runtime.HttpJspBase + implements org.apache.jasper.runtime.JspSourceDependent, + org.apache.jasper.runtime.JspSourceImports { + + private static final javax.servlet.jsp.JspFactory _jspxFactory = + javax.servlet.jsp.JspFactory.getDefaultFactory(); + + private static java.util.Map _jspx_dependants; + + static { + _jspx_dependants = new java.util.HashMap(5); + _jspx_dependants.put("/WEB-INF/jsp/include/taglib.jsp", Long.valueOf(1696469747129L)); + _jspx_dependants.put("jar:file:/D:/repo/javax/servlet/jstl/1.2/jstl-1.2.jar!/META-INF/fmt.tld", Long.valueOf(1153352682000L)); + _jspx_dependants.put("file:/D:/repo/javax/servlet/jstl/1.2/jstl-1.2.jar", Long.valueOf(1678766202128L)); + _jspx_dependants.put("jar:file:/D:/repo/javax/servlet/jstl/1.2/jstl-1.2.jar!/META-INF/fn.tld", Long.valueOf(1153352682000L)); + _jspx_dependants.put("jar:file:/D:/repo/javax/servlet/jstl/1.2/jstl-1.2.jar!/META-INF/c.tld", Long.valueOf(1153352682000L)); + } + + private static final java.util.Set _jspx_imports_packages; + + private static final java.util.Set _jspx_imports_classes; + + static { + _jspx_imports_packages = new java.util.HashSet<>(); + _jspx_imports_packages.add("javax.servlet"); + _jspx_imports_packages.add("javax.servlet.http"); + _jspx_imports_packages.add("javax.servlet.jsp"); + _jspx_imports_classes = null; + } + + private org.apache.jasper.runtime.TagHandlerPool _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody; + private org.apache.jasper.runtime.TagHandlerPool _005fjspx_005ftagPool_005fc_005fset_0026_005fvar_005fscope; + private org.apache.jasper.runtime.TagHandlerPool _005fjspx_005ftagPool_005fc_005fif_0026_005ftest; + + private volatile javax.el.ExpressionFactory _el_expressionfactory; + private volatile org.apache.tomcat.InstanceManager _jsp_instancemanager; + + public java.util.Map getDependants() { + return _jspx_dependants; + } + + public java.util.Set getPackageImports() { + return _jspx_imports_packages; + } + + public java.util.Set getClassImports() { + return _jspx_imports_classes; + } + + public javax.el.ExpressionFactory _jsp_getExpressionFactory() { + if (_el_expressionfactory == null) { + synchronized (this) { + if (_el_expressionfactory == null) { + _el_expressionfactory = _jspxFactory.getJspApplicationContext(getServletConfig().getServletContext()).getExpressionFactory(); + } + } + } + return _el_expressionfactory; + } + + public org.apache.tomcat.InstanceManager _jsp_getInstanceManager() { + if (_jsp_instancemanager == null) { + synchronized (this) { + if (_jsp_instancemanager == null) { + _jsp_instancemanager = org.apache.jasper.runtime.InstanceManagerFactory.getInstanceManager(getServletConfig()); + } + } + } + return _jsp_instancemanager; + } + + public void _jspInit() { + _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody = org.apache.jasper.runtime.TagHandlerPool.getTagHandlerPool(getServletConfig()); + _005fjspx_005ftagPool_005fc_005fset_0026_005fvar_005fscope = org.apache.jasper.runtime.TagHandlerPool.getTagHandlerPool(getServletConfig()); + _005fjspx_005ftagPool_005fc_005fif_0026_005ftest = org.apache.jasper.runtime.TagHandlerPool.getTagHandlerPool(getServletConfig()); + } + + public void _jspDestroy() { + _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.release(); + _005fjspx_005ftagPool_005fc_005fset_0026_005fvar_005fscope.release(); + _005fjspx_005ftagPool_005fc_005fif_0026_005ftest.release(); + } + + public void _jspService(final javax.servlet.http.HttpServletRequest request, final javax.servlet.http.HttpServletResponse response) + throws java.io.IOException, javax.servlet.ServletException { + + if (!javax.servlet.DispatcherType.ERROR.equals(request.getDispatcherType())) { + final java.lang.String _jspx_method = request.getMethod(); + if ("OPTIONS".equals(_jspx_method)) { + response.setHeader("Allow","GET, HEAD, POST, OPTIONS"); + return; + } + if (!"GET".equals(_jspx_method) && !"POST".equals(_jspx_method) && !"HEAD".equals(_jspx_method)) { + response.setHeader("Allow","GET, HEAD, POST, OPTIONS"); + response.sendError(HttpServletResponse.SC_METHOD_NOT_ALLOWED, "JSPs only permit GET, POST or HEAD. Jasper also permits OPTIONS"); + return; + } + } + + final javax.servlet.jsp.PageContext pageContext; + final javax.servlet.ServletContext application; + final javax.servlet.ServletConfig config; + javax.servlet.jsp.JspWriter out = null; + final java.lang.Object page = this; + javax.servlet.jsp.JspWriter _jspx_out = null; + javax.servlet.jsp.PageContext _jspx_page_context = null; + + + try { + response.setContentType("text/html; charset=UTF-8"); + pageContext = _jspxFactory.getPageContext(this, request, response, + null, false, 8192, true); + _jspx_page_context = pageContext; + application = pageContext.getServletContext(); + config = pageContext.getServletConfig(); + out = pageContext.getOut(); + _jspx_out = out; + + out.write('\r'); + out.write('\n'); + out.write('\r'); + out.write('\n'); + out.write("\r\n"); + out.write("
\r\n"); + out.write(" Loading...\r\n"); + out.write("
\r\n"); + out.write("\r\n"); + out.write("\r\n"); + out.write("\r\n"); + out.write("\r\n"); + out.write("\r\n"); + out.write('\r'); + out.write('\n'); + out.write("\r\n"); + out.write("\r\n"); + out.write("\r\n"); + out.write("\r\n"); + out.write("\r\n"); + out.write("\r\n"); + out.write("\r\n"); + out.write("\r\n"); + out.write("\r\n"); + out.write("\r\n"); + out.write("\r\n"); + out.write("\r\n"); + out.write("\r\n"); + out.write("\r\n"); + out.write("\r\n"); + out.write("\r\n"); + out.write("\r\n"); + out.write("\r\n"); + out.write("\r\n"); + out.write("\r\n"); + out.write("\r\n"); + out.write("\r\n"); + out.write("\r\n"); + out.write("\r\n"); + out.write("\r\n"); + out.write("\r\n"); + out.write("\r\n"); + out.write("\r\n"); + out.write("\r\n"); + out.write("\r\n"); + out.write("\r\n"); + out.write("\r\n"); + out.write("\r\n"); + out.write("\r\n"); + out.write("\r\n"); + out.write("\r\n"); + out.write("\r\n"); + out.write("\r\n"); + out.write("\r\n"); + out.write("\r\n"); + out.write("\r\n"); + out.write("\r\n"); + out.write("\r\n"); + out.write("\r\n"); + out.write("\r\n"); + out.write("\r\n"); + out.write("\r\n"); + out.write("\r\n"); + out.write("\r\n"); + if (_jspx_meth_c_005fset_005f0(_jspx_page_context)) + return; + out.write('\r'); + out.write('\n'); + } catch (java.lang.Throwable t) { + if (!(t instanceof javax.servlet.jsp.SkipPageException)){ + out = _jspx_out; + if (out != null && out.getBufferSize() != 0) + try { + if (response.isCommitted()) { + out.flush(); + } else { + out.clearBuffer(); + } + } catch (java.io.IOException e) {} + if (_jspx_page_context != null) _jspx_page_context.handlePageException(t); + else throw new ServletException(t); + } + } finally { + _jspxFactory.releasePageContext(_jspx_page_context); + } + } + + private boolean _jspx_meth_c_005furl_005f0(javax.servlet.jsp.PageContext _jspx_page_context) + throws java.lang.Throwable { + javax.servlet.jsp.PageContext pageContext = _jspx_page_context; + javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); + // c:url + org.apache.taglibs.standard.tag.rt.core.UrlTag _jspx_th_c_005furl_005f0 = (org.apache.taglibs.standard.tag.rt.core.UrlTag) _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.get(org.apache.taglibs.standard.tag.rt.core.UrlTag.class); + boolean _jspx_th_c_005furl_005f0_reused = false; + try { + _jspx_th_c_005furl_005f0.setPageContext(_jspx_page_context); + _jspx_th_c_005furl_005f0.setParent(null); + // /WEB-INF/jsp/include/tail.jsp(7,13) name = value type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null + _jspx_th_c_005furl_005f0.setValue("/resources/3rd-party/sneat/js/helpers.js"); + int _jspx_eval_c_005furl_005f0 = _jspx_th_c_005furl_005f0.doStartTag(); + if (_jspx_th_c_005furl_005f0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { + return true; + } + _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.reuse(_jspx_th_c_005furl_005f0); + _jspx_th_c_005furl_005f0_reused = true; + } finally { + org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_c_005furl_005f0, _jsp_getInstanceManager(), _jspx_th_c_005furl_005f0_reused); + } + return false; + } + + private boolean _jspx_meth_c_005furl_005f1(javax.servlet.jsp.PageContext _jspx_page_context) + throws java.lang.Throwable { + javax.servlet.jsp.PageContext pageContext = _jspx_page_context; + javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); + // c:url + org.apache.taglibs.standard.tag.rt.core.UrlTag _jspx_th_c_005furl_005f1 = (org.apache.taglibs.standard.tag.rt.core.UrlTag) _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.get(org.apache.taglibs.standard.tag.rt.core.UrlTag.class); + boolean _jspx_th_c_005furl_005f1_reused = false; + try { + _jspx_th_c_005furl_005f1.setPageContext(_jspx_page_context); + _jspx_th_c_005furl_005f1.setParent(null); + // /WEB-INF/jsp/include/tail.jsp(14,13) name = value type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null + _jspx_th_c_005furl_005f1.setValue("/resources/3rd-party/sneat/js/config.js"); + int _jspx_eval_c_005furl_005f1 = _jspx_th_c_005furl_005f1.doStartTag(); + if (_jspx_th_c_005furl_005f1.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { + return true; + } + _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.reuse(_jspx_th_c_005furl_005f1); + _jspx_th_c_005furl_005f1_reused = true; + } finally { + org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_c_005furl_005f1, _jsp_getInstanceManager(), _jspx_th_c_005furl_005f1_reused); + } + return false; + } + + private boolean _jspx_meth_c_005furl_005f2(javax.servlet.jsp.PageContext _jspx_page_context) + throws java.lang.Throwable { + javax.servlet.jsp.PageContext pageContext = _jspx_page_context; + javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); + // c:url + org.apache.taglibs.standard.tag.rt.core.UrlTag _jspx_th_c_005furl_005f2 = (org.apache.taglibs.standard.tag.rt.core.UrlTag) _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.get(org.apache.taglibs.standard.tag.rt.core.UrlTag.class); + boolean _jspx_th_c_005furl_005f2_reused = false; + try { + _jspx_th_c_005furl_005f2.setPageContext(_jspx_page_context); + _jspx_th_c_005furl_005f2.setParent(null); + // /WEB-INF/jsp/include/tail.jsp(18,13) name = value type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null + _jspx_th_c_005furl_005f2.setValue("/resources/3rd-party/sneat/libs/jquery/jquery.js"); + int _jspx_eval_c_005furl_005f2 = _jspx_th_c_005furl_005f2.doStartTag(); + if (_jspx_th_c_005furl_005f2.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { + return true; + } + _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.reuse(_jspx_th_c_005furl_005f2); + _jspx_th_c_005furl_005f2_reused = true; + } finally { + org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_c_005furl_005f2, _jsp_getInstanceManager(), _jspx_th_c_005furl_005f2_reused); + } + return false; + } + + private boolean _jspx_meth_c_005furl_005f3(javax.servlet.jsp.PageContext _jspx_page_context) + throws java.lang.Throwable { + javax.servlet.jsp.PageContext pageContext = _jspx_page_context; + javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); + // c:url + org.apache.taglibs.standard.tag.rt.core.UrlTag _jspx_th_c_005furl_005f3 = (org.apache.taglibs.standard.tag.rt.core.UrlTag) _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.get(org.apache.taglibs.standard.tag.rt.core.UrlTag.class); + boolean _jspx_th_c_005furl_005f3_reused = false; + try { + _jspx_th_c_005furl_005f3.setPageContext(_jspx_page_context); + _jspx_th_c_005furl_005f3.setParent(null); + // /WEB-INF/jsp/include/tail.jsp(19,13) name = value type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null + _jspx_th_c_005furl_005f3.setValue("/resources/3rd-party/sneat/libs/popper/popper.js"); + int _jspx_eval_c_005furl_005f3 = _jspx_th_c_005furl_005f3.doStartTag(); + if (_jspx_th_c_005furl_005f3.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { + return true; + } + _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.reuse(_jspx_th_c_005furl_005f3); + _jspx_th_c_005furl_005f3_reused = true; + } finally { + org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_c_005furl_005f3, _jsp_getInstanceManager(), _jspx_th_c_005furl_005f3_reused); + } + return false; + } + + private boolean _jspx_meth_c_005furl_005f4(javax.servlet.jsp.PageContext _jspx_page_context) + throws java.lang.Throwable { + javax.servlet.jsp.PageContext pageContext = _jspx_page_context; + javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); + // c:url + org.apache.taglibs.standard.tag.rt.core.UrlTag _jspx_th_c_005furl_005f4 = (org.apache.taglibs.standard.tag.rt.core.UrlTag) _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.get(org.apache.taglibs.standard.tag.rt.core.UrlTag.class); + boolean _jspx_th_c_005furl_005f4_reused = false; + try { + _jspx_th_c_005furl_005f4.setPageContext(_jspx_page_context); + _jspx_th_c_005furl_005f4.setParent(null); + // /WEB-INF/jsp/include/tail.jsp(20,13) name = value type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null + _jspx_th_c_005furl_005f4.setValue("/resources/3rd-party/sneat/js/bootstrap.js"); + int _jspx_eval_c_005furl_005f4 = _jspx_th_c_005furl_005f4.doStartTag(); + if (_jspx_th_c_005furl_005f4.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { + return true; + } + _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.reuse(_jspx_th_c_005furl_005f4); + _jspx_th_c_005furl_005f4_reused = true; + } finally { + org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_c_005furl_005f4, _jsp_getInstanceManager(), _jspx_th_c_005furl_005f4_reused); + } + return false; + } + + private boolean _jspx_meth_c_005furl_005f5(javax.servlet.jsp.PageContext _jspx_page_context) + throws java.lang.Throwable { + javax.servlet.jsp.PageContext pageContext = _jspx_page_context; + javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); + // c:url + org.apache.taglibs.standard.tag.rt.core.UrlTag _jspx_th_c_005furl_005f5 = (org.apache.taglibs.standard.tag.rt.core.UrlTag) _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.get(org.apache.taglibs.standard.tag.rt.core.UrlTag.class); + boolean _jspx_th_c_005furl_005f5_reused = false; + try { + _jspx_th_c_005furl_005f5.setPageContext(_jspx_page_context); + _jspx_th_c_005furl_005f5.setParent(null); + // /WEB-INF/jsp/include/tail.jsp(21,13) name = value type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null + _jspx_th_c_005furl_005f5.setValue("/resources/3rd-party/sneat/libs/perfect-scrollbar/perfect-scrollbar.js"); + int _jspx_eval_c_005furl_005f5 = _jspx_th_c_005furl_005f5.doStartTag(); + if (_jspx_th_c_005furl_005f5.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { + return true; + } + _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.reuse(_jspx_th_c_005furl_005f5); + _jspx_th_c_005furl_005f5_reused = true; + } finally { + org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_c_005furl_005f5, _jsp_getInstanceManager(), _jspx_th_c_005furl_005f5_reused); + } + return false; + } + + private boolean _jspx_meth_c_005furl_005f6(javax.servlet.jsp.PageContext _jspx_page_context) + throws java.lang.Throwable { + javax.servlet.jsp.PageContext pageContext = _jspx_page_context; + javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); + // c:url + org.apache.taglibs.standard.tag.rt.core.UrlTag _jspx_th_c_005furl_005f6 = (org.apache.taglibs.standard.tag.rt.core.UrlTag) _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.get(org.apache.taglibs.standard.tag.rt.core.UrlTag.class); + boolean _jspx_th_c_005furl_005f6_reused = false; + try { + _jspx_th_c_005furl_005f6.setPageContext(_jspx_page_context); + _jspx_th_c_005furl_005f6.setParent(null); + // /WEB-INF/jsp/include/tail.jsp(22,13) name = value type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null + _jspx_th_c_005furl_005f6.setValue("/resources/3rd-party/sneat/libs/hammer/hammer.js"); + int _jspx_eval_c_005furl_005f6 = _jspx_th_c_005furl_005f6.doStartTag(); + if (_jspx_th_c_005furl_005f6.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { + return true; + } + _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.reuse(_jspx_th_c_005furl_005f6); + _jspx_th_c_005furl_005f6_reused = true; + } finally { + org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_c_005furl_005f6, _jsp_getInstanceManager(), _jspx_th_c_005furl_005f6_reused); + } + return false; + } + + private boolean _jspx_meth_c_005furl_005f7(javax.servlet.jsp.PageContext _jspx_page_context) + throws java.lang.Throwable { + javax.servlet.jsp.PageContext pageContext = _jspx_page_context; + javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); + // c:url + org.apache.taglibs.standard.tag.rt.core.UrlTag _jspx_th_c_005furl_005f7 = (org.apache.taglibs.standard.tag.rt.core.UrlTag) _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.get(org.apache.taglibs.standard.tag.rt.core.UrlTag.class); + boolean _jspx_th_c_005furl_005f7_reused = false; + try { + _jspx_th_c_005furl_005f7.setPageContext(_jspx_page_context); + _jspx_th_c_005furl_005f7.setParent(null); + // /WEB-INF/jsp/include/tail.jsp(23,13) name = value type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null + _jspx_th_c_005furl_005f7.setValue("/resources/3rd-party/sneat/libs/i18n/i18n.js"); + int _jspx_eval_c_005furl_005f7 = _jspx_th_c_005furl_005f7.doStartTag(); + if (_jspx_th_c_005furl_005f7.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { + return true; + } + _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.reuse(_jspx_th_c_005furl_005f7); + _jspx_th_c_005furl_005f7_reused = true; + } finally { + org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_c_005furl_005f7, _jsp_getInstanceManager(), _jspx_th_c_005furl_005f7_reused); + } + return false; + } + + private boolean _jspx_meth_c_005furl_005f8(javax.servlet.jsp.PageContext _jspx_page_context) + throws java.lang.Throwable { + javax.servlet.jsp.PageContext pageContext = _jspx_page_context; + javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); + // c:url + org.apache.taglibs.standard.tag.rt.core.UrlTag _jspx_th_c_005furl_005f8 = (org.apache.taglibs.standard.tag.rt.core.UrlTag) _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.get(org.apache.taglibs.standard.tag.rt.core.UrlTag.class); + boolean _jspx_th_c_005furl_005f8_reused = false; + try { + _jspx_th_c_005furl_005f8.setPageContext(_jspx_page_context); + _jspx_th_c_005furl_005f8.setParent(null); + // /WEB-INF/jsp/include/tail.jsp(24,13) name = value type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null + _jspx_th_c_005furl_005f8.setValue("/resources/3rd-party/sneat/js/menu.js"); + int _jspx_eval_c_005furl_005f8 = _jspx_th_c_005furl_005f8.doStartTag(); + if (_jspx_th_c_005furl_005f8.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { + return true; + } + _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.reuse(_jspx_th_c_005furl_005f8); + _jspx_th_c_005furl_005f8_reused = true; + } finally { + org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_c_005furl_005f8, _jsp_getInstanceManager(), _jspx_th_c_005furl_005f8_reused); + } + return false; + } + + private boolean _jspx_meth_c_005furl_005f9(javax.servlet.jsp.PageContext _jspx_page_context) + throws java.lang.Throwable { + javax.servlet.jsp.PageContext pageContext = _jspx_page_context; + javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); + // c:url + org.apache.taglibs.standard.tag.rt.core.UrlTag _jspx_th_c_005furl_005f9 = (org.apache.taglibs.standard.tag.rt.core.UrlTag) _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.get(org.apache.taglibs.standard.tag.rt.core.UrlTag.class); + boolean _jspx_th_c_005furl_005f9_reused = false; + try { + _jspx_th_c_005furl_005f9.setPageContext(_jspx_page_context); + _jspx_th_c_005furl_005f9.setParent(null); + // /WEB-INF/jsp/include/tail.jsp(25,13) name = value type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null + _jspx_th_c_005furl_005f9.setValue("/resources/3rd-party/sneat/libs/jstree/jstree.js"); + int _jspx_eval_c_005furl_005f9 = _jspx_th_c_005furl_005f9.doStartTag(); + if (_jspx_th_c_005furl_005f9.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { + return true; + } + _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.reuse(_jspx_th_c_005furl_005f9); + _jspx_th_c_005furl_005f9_reused = true; + } finally { + org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_c_005furl_005f9, _jsp_getInstanceManager(), _jspx_th_c_005furl_005f9_reused); + } + return false; + } + + private boolean _jspx_meth_c_005furl_005f10(javax.servlet.jsp.PageContext _jspx_page_context) + throws java.lang.Throwable { + javax.servlet.jsp.PageContext pageContext = _jspx_page_context; + javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); + // c:url + org.apache.taglibs.standard.tag.rt.core.UrlTag _jspx_th_c_005furl_005f10 = (org.apache.taglibs.standard.tag.rt.core.UrlTag) _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.get(org.apache.taglibs.standard.tag.rt.core.UrlTag.class); + boolean _jspx_th_c_005furl_005f10_reused = false; + try { + _jspx_th_c_005furl_005f10.setPageContext(_jspx_page_context); + _jspx_th_c_005furl_005f10.setParent(null); + // /WEB-INF/jsp/include/tail.jsp(26,13) name = value type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null + _jspx_th_c_005furl_005f10.setValue("/resources/3rd-party/jstree/jstree-support.js"); + int _jspx_eval_c_005furl_005f10 = _jspx_th_c_005furl_005f10.doStartTag(); + if (_jspx_th_c_005furl_005f10.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { + return true; + } + _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.reuse(_jspx_th_c_005furl_005f10); + _jspx_th_c_005furl_005f10_reused = true; + } finally { + org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_c_005furl_005f10, _jsp_getInstanceManager(), _jspx_th_c_005furl_005f10_reused); + } + return false; + } + + private boolean _jspx_meth_c_005furl_005f11(javax.servlet.jsp.PageContext _jspx_page_context) + throws java.lang.Throwable { + javax.servlet.jsp.PageContext pageContext = _jspx_page_context; + javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); + // c:url + org.apache.taglibs.standard.tag.rt.core.UrlTag _jspx_th_c_005furl_005f11 = (org.apache.taglibs.standard.tag.rt.core.UrlTag) _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.get(org.apache.taglibs.standard.tag.rt.core.UrlTag.class); + boolean _jspx_th_c_005furl_005f11_reused = false; + try { + _jspx_th_c_005furl_005f11.setPageContext(_jspx_page_context); + _jspx_th_c_005furl_005f11.setParent(null); + // /WEB-INF/jsp/include/tail.jsp(27,13) name = value type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null + _jspx_th_c_005furl_005f11.setValue("/resources/3rd-party/sneat/libs/chartjs/chartjs.js"); + int _jspx_eval_c_005furl_005f11 = _jspx_th_c_005furl_005f11.doStartTag(); + if (_jspx_th_c_005furl_005f11.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { + return true; + } + _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.reuse(_jspx_th_c_005furl_005f11); + _jspx_th_c_005furl_005f11_reused = true; + } finally { + org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_c_005furl_005f11, _jsp_getInstanceManager(), _jspx_th_c_005furl_005f11_reused); + } + return false; + } + + private boolean _jspx_meth_c_005furl_005f12(javax.servlet.jsp.PageContext _jspx_page_context) + throws java.lang.Throwable { + javax.servlet.jsp.PageContext pageContext = _jspx_page_context; + javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); + // c:url + org.apache.taglibs.standard.tag.rt.core.UrlTag _jspx_th_c_005furl_005f12 = (org.apache.taglibs.standard.tag.rt.core.UrlTag) _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.get(org.apache.taglibs.standard.tag.rt.core.UrlTag.class); + boolean _jspx_th_c_005furl_005f12_reused = false; + try { + _jspx_th_c_005furl_005f12.setPageContext(_jspx_page_context); + _jspx_th_c_005furl_005f12.setParent(null); + // /WEB-INF/jsp/include/tail.jsp(28,13) name = value type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null + _jspx_th_c_005furl_005f12.setValue((java.lang.String) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("/resources/lib/fims/framework/jquery-ui/1.13.2/jquery-ui.js?${ver}", java.lang.String.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null)); + int _jspx_eval_c_005furl_005f12 = _jspx_th_c_005furl_005f12.doStartTag(); + if (_jspx_th_c_005furl_005f12.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { + return true; + } + _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.reuse(_jspx_th_c_005furl_005f12); + _jspx_th_c_005furl_005f12_reused = true; + } finally { + org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_c_005furl_005f12, _jsp_getInstanceManager(), _jspx_th_c_005furl_005f12_reused); + } + return false; + } + + private boolean _jspx_meth_c_005furl_005f13(javax.servlet.jsp.PageContext _jspx_page_context) + throws java.lang.Throwable { + javax.servlet.jsp.PageContext pageContext = _jspx_page_context; + javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); + // c:url + org.apache.taglibs.standard.tag.rt.core.UrlTag _jspx_th_c_005furl_005f13 = (org.apache.taglibs.standard.tag.rt.core.UrlTag) _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.get(org.apache.taglibs.standard.tag.rt.core.UrlTag.class); + boolean _jspx_th_c_005furl_005f13_reused = false; + try { + _jspx_th_c_005furl_005f13.setPageContext(_jspx_page_context); + _jspx_th_c_005furl_005f13.setParent(null); + // /WEB-INF/jsp/include/tail.jsp(31,13) name = value type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null + _jspx_th_c_005furl_005f13.setValue((java.lang.String) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("/resources/js/base/base.js?${ver}", java.lang.String.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null)); + int _jspx_eval_c_005furl_005f13 = _jspx_th_c_005furl_005f13.doStartTag(); + if (_jspx_th_c_005furl_005f13.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { + return true; + } + _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.reuse(_jspx_th_c_005furl_005f13); + _jspx_th_c_005furl_005f13_reused = true; + } finally { + org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_c_005furl_005f13, _jsp_getInstanceManager(), _jspx_th_c_005furl_005f13_reused); + } + return false; + } + + private boolean _jspx_meth_c_005furl_005f14(javax.servlet.jsp.PageContext _jspx_page_context) + throws java.lang.Throwable { + javax.servlet.jsp.PageContext pageContext = _jspx_page_context; + javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); + // c:url + org.apache.taglibs.standard.tag.rt.core.UrlTag _jspx_th_c_005furl_005f14 = (org.apache.taglibs.standard.tag.rt.core.UrlTag) _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.get(org.apache.taglibs.standard.tag.rt.core.UrlTag.class); + boolean _jspx_th_c_005furl_005f14_reused = false; + try { + _jspx_th_c_005furl_005f14.setPageContext(_jspx_page_context); + _jspx_th_c_005furl_005f14.setParent(null); + // /WEB-INF/jsp/include/tail.jsp(32,13) name = value type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null + _jspx_th_c_005furl_005f14.setValue((java.lang.String) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("/resources/js/base/base-fims.js?${ver}", java.lang.String.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null)); + int _jspx_eval_c_005furl_005f14 = _jspx_th_c_005furl_005f14.doStartTag(); + if (_jspx_th_c_005furl_005f14.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { + return true; + } + _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.reuse(_jspx_th_c_005furl_005f14); + _jspx_th_c_005furl_005f14_reused = true; + } finally { + org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_c_005furl_005f14, _jsp_getInstanceManager(), _jspx_th_c_005furl_005f14_reused); + } + return false; + } + + private boolean _jspx_meth_c_005furl_005f15(javax.servlet.jsp.PageContext _jspx_page_context) + throws java.lang.Throwable { + javax.servlet.jsp.PageContext pageContext = _jspx_page_context; + javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); + // c:url + org.apache.taglibs.standard.tag.rt.core.UrlTag _jspx_th_c_005furl_005f15 = (org.apache.taglibs.standard.tag.rt.core.UrlTag) _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.get(org.apache.taglibs.standard.tag.rt.core.UrlTag.class); + boolean _jspx_th_c_005furl_005f15_reused = false; + try { + _jspx_th_c_005furl_005f15.setPageContext(_jspx_page_context); + _jspx_th_c_005furl_005f15.setParent(null); + // /WEB-INF/jsp/include/tail.jsp(33,13) name = value type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null + _jspx_th_c_005furl_005f15.setValue((java.lang.String) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("/resources/js/base/dataset.js?${ver}", java.lang.String.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null)); + int _jspx_eval_c_005furl_005f15 = _jspx_th_c_005furl_005f15.doStartTag(); + if (_jspx_th_c_005furl_005f15.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { + return true; + } + _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.reuse(_jspx_th_c_005furl_005f15); + _jspx_th_c_005furl_005f15_reused = true; + } finally { + org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_c_005furl_005f15, _jsp_getInstanceManager(), _jspx_th_c_005furl_005f15_reused); + } + return false; + } + + private boolean _jspx_meth_c_005furl_005f16(javax.servlet.jsp.PageContext _jspx_page_context) + throws java.lang.Throwable { + javax.servlet.jsp.PageContext pageContext = _jspx_page_context; + javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); + // c:url + org.apache.taglibs.standard.tag.rt.core.UrlTag _jspx_th_c_005furl_005f16 = (org.apache.taglibs.standard.tag.rt.core.UrlTag) _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.get(org.apache.taglibs.standard.tag.rt.core.UrlTag.class); + boolean _jspx_th_c_005furl_005f16_reused = false; + try { + _jspx_th_c_005furl_005f16.setPageContext(_jspx_page_context); + _jspx_th_c_005furl_005f16.setParent(null); + // /WEB-INF/jsp/include/tail.jsp(34,13) name = value type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null + _jspx_th_c_005furl_005f16.setValue((java.lang.String) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("/resources/js/base/upload-support.js?${ver}", java.lang.String.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null)); + int _jspx_eval_c_005furl_005f16 = _jspx_th_c_005furl_005f16.doStartTag(); + if (_jspx_th_c_005furl_005f16.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { + return true; + } + _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.reuse(_jspx_th_c_005furl_005f16); + _jspx_th_c_005furl_005f16_reused = true; + } finally { + org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_c_005furl_005f16, _jsp_getInstanceManager(), _jspx_th_c_005furl_005f16_reused); + } + return false; + } + + private boolean _jspx_meth_c_005furl_005f17(javax.servlet.jsp.PageContext _jspx_page_context) + throws java.lang.Throwable { + javax.servlet.jsp.PageContext pageContext = _jspx_page_context; + javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); + // c:url + org.apache.taglibs.standard.tag.rt.core.UrlTag _jspx_th_c_005furl_005f17 = (org.apache.taglibs.standard.tag.rt.core.UrlTag) _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.get(org.apache.taglibs.standard.tag.rt.core.UrlTag.class); + boolean _jspx_th_c_005furl_005f17_reused = false; + try { + _jspx_th_c_005furl_005f17.setPageContext(_jspx_page_context); + _jspx_th_c_005furl_005f17.setParent(null); + // /WEB-INF/jsp/include/tail.jsp(35,13) name = value type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null + _jspx_th_c_005furl_005f17.setValue("/resources/js/base/code.js"); + int _jspx_eval_c_005furl_005f17 = _jspx_th_c_005furl_005f17.doStartTag(); + if (_jspx_th_c_005furl_005f17.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { + return true; + } + _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.reuse(_jspx_th_c_005furl_005f17); + _jspx_th_c_005furl_005f17_reused = true; + } finally { + org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_c_005furl_005f17, _jsp_getInstanceManager(), _jspx_th_c_005furl_005f17_reused); + } + return false; + } + + private boolean _jspx_meth_c_005furl_005f18(javax.servlet.jsp.PageContext _jspx_page_context) + throws java.lang.Throwable { + javax.servlet.jsp.PageContext pageContext = _jspx_page_context; + javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); + // c:url + org.apache.taglibs.standard.tag.rt.core.UrlTag _jspx_th_c_005furl_005f18 = (org.apache.taglibs.standard.tag.rt.core.UrlTag) _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.get(org.apache.taglibs.standard.tag.rt.core.UrlTag.class); + boolean _jspx_th_c_005furl_005f18_reused = false; + try { + _jspx_th_c_005furl_005f18.setPageContext(_jspx_page_context); + _jspx_th_c_005furl_005f18.setParent(null); + // /WEB-INF/jsp/include/tail.jsp(36,13) name = value type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null + _jspx_th_c_005furl_005f18.setValue((java.lang.String) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("/resources/js/base/code-support.js?${ver}", java.lang.String.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null)); + int _jspx_eval_c_005furl_005f18 = _jspx_th_c_005furl_005f18.doStartTag(); + if (_jspx_th_c_005furl_005f18.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { + return true; + } + _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.reuse(_jspx_th_c_005furl_005f18); + _jspx_th_c_005furl_005f18_reused = true; + } finally { + org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_c_005furl_005f18, _jsp_getInstanceManager(), _jspx_th_c_005furl_005f18_reused); + } + return false; + } + + private boolean _jspx_meth_c_005furl_005f19(javax.servlet.jsp.PageContext _jspx_page_context) + throws java.lang.Throwable { + javax.servlet.jsp.PageContext pageContext = _jspx_page_context; + javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); + // c:url + org.apache.taglibs.standard.tag.rt.core.UrlTag _jspx_th_c_005furl_005f19 = (org.apache.taglibs.standard.tag.rt.core.UrlTag) _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.get(org.apache.taglibs.standard.tag.rt.core.UrlTag.class); + boolean _jspx_th_c_005furl_005f19_reused = false; + try { + _jspx_th_c_005furl_005f19.setPageContext(_jspx_page_context); + _jspx_th_c_005furl_005f19.setParent(null); + // /WEB-INF/jsp/include/tail.jsp(37,13) name = value type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null + _jspx_th_c_005furl_005f19.setValue("/resources/js/base/menu.js"); + int _jspx_eval_c_005furl_005f19 = _jspx_th_c_005furl_005f19.doStartTag(); + if (_jspx_th_c_005furl_005f19.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { + return true; + } + _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.reuse(_jspx_th_c_005furl_005f19); + _jspx_th_c_005furl_005f19_reused = true; + } finally { + org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_c_005furl_005f19, _jsp_getInstanceManager(), _jspx_th_c_005furl_005f19_reused); + } + return false; + } + + private boolean _jspx_meth_c_005furl_005f20(javax.servlet.jsp.PageContext _jspx_page_context) + throws java.lang.Throwable { + javax.servlet.jsp.PageContext pageContext = _jspx_page_context; + javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); + // c:url + org.apache.taglibs.standard.tag.rt.core.UrlTag _jspx_th_c_005furl_005f20 = (org.apache.taglibs.standard.tag.rt.core.UrlTag) _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.get(org.apache.taglibs.standard.tag.rt.core.UrlTag.class); + boolean _jspx_th_c_005furl_005f20_reused = false; + try { + _jspx_th_c_005furl_005f20.setPageContext(_jspx_page_context); + _jspx_th_c_005furl_005f20.setParent(null); + // /WEB-INF/jsp/include/tail.jsp(38,13) name = value type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null + _jspx_th_c_005furl_005f20.setValue((java.lang.String) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("/resources/js/base/menu-support.js?${ver}", java.lang.String.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null)); + int _jspx_eval_c_005furl_005f20 = _jspx_th_c_005furl_005f20.doStartTag(); + if (_jspx_th_c_005furl_005f20.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { + return true; + } + _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.reuse(_jspx_th_c_005furl_005f20); + _jspx_th_c_005furl_005f20_reused = true; + } finally { + org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_c_005furl_005f20, _jsp_getInstanceManager(), _jspx_th_c_005furl_005f20_reused); + } + return false; + } + + private boolean _jspx_meth_c_005furl_005f21(javax.servlet.jsp.PageContext _jspx_page_context) + throws java.lang.Throwable { + javax.servlet.jsp.PageContext pageContext = _jspx_page_context; + javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); + // c:url + org.apache.taglibs.standard.tag.rt.core.UrlTag _jspx_th_c_005furl_005f21 = (org.apache.taglibs.standard.tag.rt.core.UrlTag) _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.get(org.apache.taglibs.standard.tag.rt.core.UrlTag.class); + boolean _jspx_th_c_005furl_005f21_reused = false; + try { + _jspx_th_c_005furl_005f21.setPageContext(_jspx_page_context); + _jspx_th_c_005furl_005f21.setParent(null); + // /WEB-INF/jsp/include/tail.jsp(39,13) name = value type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null + _jspx_th_c_005furl_005f21.setValue((java.lang.String) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("/resources/js/base/menu-support-fims.js?${ver}", java.lang.String.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null)); + int _jspx_eval_c_005furl_005f21 = _jspx_th_c_005furl_005f21.doStartTag(); + if (_jspx_th_c_005furl_005f21.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { + return true; + } + _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.reuse(_jspx_th_c_005furl_005f21); + _jspx_th_c_005furl_005f21_reused = true; + } finally { + org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_c_005furl_005f21, _jsp_getInstanceManager(), _jspx_th_c_005furl_005f21_reused); + } + return false; + } + + private boolean _jspx_meth_c_005furl_005f22(javax.servlet.jsp.PageContext _jspx_page_context) + throws java.lang.Throwable { + javax.servlet.jsp.PageContext pageContext = _jspx_page_context; + javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); + // c:url + org.apache.taglibs.standard.tag.rt.core.UrlTag _jspx_th_c_005furl_005f22 = (org.apache.taglibs.standard.tag.rt.core.UrlTag) _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.get(org.apache.taglibs.standard.tag.rt.core.UrlTag.class); + boolean _jspx_th_c_005furl_005f22_reused = false; + try { + _jspx_th_c_005furl_005f22.setPageContext(_jspx_page_context); + _jspx_th_c_005furl_005f22.setParent(null); + // /WEB-INF/jsp/include/tail.jsp(40,13) name = value type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null + _jspx_th_c_005furl_005f22.setValue((java.lang.String) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("/resources/js/base/actionGroup.js?${ver}", java.lang.String.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null)); + int _jspx_eval_c_005furl_005f22 = _jspx_th_c_005furl_005f22.doStartTag(); + if (_jspx_th_c_005furl_005f22.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { + return true; + } + _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.reuse(_jspx_th_c_005furl_005f22); + _jspx_th_c_005furl_005f22_reused = true; + } finally { + org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_c_005furl_005f22, _jsp_getInstanceManager(), _jspx_th_c_005furl_005f22_reused); + } + return false; + } + + private boolean _jspx_meth_c_005furl_005f23(javax.servlet.jsp.PageContext _jspx_page_context) + throws java.lang.Throwable { + javax.servlet.jsp.PageContext pageContext = _jspx_page_context; + javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); + // c:url + org.apache.taglibs.standard.tag.rt.core.UrlTag _jspx_th_c_005furl_005f23 = (org.apache.taglibs.standard.tag.rt.core.UrlTag) _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.get(org.apache.taglibs.standard.tag.rt.core.UrlTag.class); + boolean _jspx_th_c_005furl_005f23_reused = false; + try { + _jspx_th_c_005furl_005f23.setPageContext(_jspx_page_context); + _jspx_th_c_005furl_005f23.setParent(null); + // /WEB-INF/jsp/include/tail.jsp(41,13) name = value type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null + _jspx_th_c_005furl_005f23.setValue((java.lang.String) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("/resources/js/base/user.js?${ver}", java.lang.String.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null)); + int _jspx_eval_c_005furl_005f23 = _jspx_th_c_005furl_005f23.doStartTag(); + if (_jspx_th_c_005furl_005f23.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { + return true; + } + _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.reuse(_jspx_th_c_005furl_005f23); + _jspx_th_c_005furl_005f23_reused = true; + } finally { + org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_c_005furl_005f23, _jsp_getInstanceManager(), _jspx_th_c_005furl_005f23_reused); + } + return false; + } + + private boolean _jspx_meth_c_005furl_005f24(javax.servlet.jsp.PageContext _jspx_page_context) + throws java.lang.Throwable { + javax.servlet.jsp.PageContext pageContext = _jspx_page_context; + javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); + // c:url + org.apache.taglibs.standard.tag.rt.core.UrlTag _jspx_th_c_005furl_005f24 = (org.apache.taglibs.standard.tag.rt.core.UrlTag) _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.get(org.apache.taglibs.standard.tag.rt.core.UrlTag.class); + boolean _jspx_th_c_005furl_005f24_reused = false; + try { + _jspx_th_c_005furl_005f24.setPageContext(_jspx_page_context); + _jspx_th_c_005furl_005f24.setParent(null); + // /WEB-INF/jsp/include/tail.jsp(42,13) name = value type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null + _jspx_th_c_005furl_005f24.setValue((java.lang.String) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("/resources/js/base/authority.js?${ver}", java.lang.String.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null)); + int _jspx_eval_c_005furl_005f24 = _jspx_th_c_005furl_005f24.doStartTag(); + if (_jspx_th_c_005furl_005f24.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { + return true; + } + _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.reuse(_jspx_th_c_005furl_005f24); + _jspx_th_c_005furl_005f24_reused = true; + } finally { + org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_c_005furl_005f24, _jsp_getInstanceManager(), _jspx_th_c_005furl_005f24_reused); + } + return false; + } + + private boolean _jspx_meth_c_005furl_005f25(javax.servlet.jsp.PageContext _jspx_page_context) + throws java.lang.Throwable { + javax.servlet.jsp.PageContext pageContext = _jspx_page_context; + javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); + // c:url + org.apache.taglibs.standard.tag.rt.core.UrlTag _jspx_th_c_005furl_005f25 = (org.apache.taglibs.standard.tag.rt.core.UrlTag) _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.get(org.apache.taglibs.standard.tag.rt.core.UrlTag.class); + boolean _jspx_th_c_005furl_005f25_reused = false; + try { + _jspx_th_c_005furl_005f25.setPageContext(_jspx_page_context); + _jspx_th_c_005furl_005f25.setParent(null); + // /WEB-INF/jsp/include/tail.jsp(45,13) name = value type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null + _jspx_th_c_005furl_005f25.setValue((java.lang.String) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("/resources/js/fims/framework/cmm/cmmUtil.js?${ver}", java.lang.String.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null)); + int _jspx_eval_c_005furl_005f25 = _jspx_th_c_005furl_005f25.doStartTag(); + if (_jspx_th_c_005furl_005f25.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { + return true; + } + _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.reuse(_jspx_th_c_005furl_005f25); + _jspx_th_c_005furl_005f25_reused = true; + } finally { + org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_c_005furl_005f25, _jsp_getInstanceManager(), _jspx_th_c_005furl_005f25_reused); + } + return false; + } + + private boolean _jspx_meth_c_005furl_005f26(javax.servlet.jsp.PageContext _jspx_page_context) + throws java.lang.Throwable { + javax.servlet.jsp.PageContext pageContext = _jspx_page_context; + javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); + // c:url + org.apache.taglibs.standard.tag.rt.core.UrlTag _jspx_th_c_005furl_005f26 = (org.apache.taglibs.standard.tag.rt.core.UrlTag) _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.get(org.apache.taglibs.standard.tag.rt.core.UrlTag.class); + boolean _jspx_th_c_005furl_005f26_reused = false; + try { + _jspx_th_c_005furl_005f26.setPageContext(_jspx_page_context); + _jspx_th_c_005furl_005f26.setParent(null); + // /WEB-INF/jsp/include/tail.jsp(47,13) name = value type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null + _jspx_th_c_005furl_005f26.setValue((java.lang.String) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("/resources/js/fims/framework/cmm/cmmDateUtil.js?${ver}", java.lang.String.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null)); + int _jspx_eval_c_005furl_005f26 = _jspx_th_c_005furl_005f26.doStartTag(); + if (_jspx_th_c_005furl_005f26.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { + return true; + } + _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.reuse(_jspx_th_c_005furl_005f26); + _jspx_th_c_005furl_005f26_reused = true; + } finally { + org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_c_005furl_005f26, _jsp_getInstanceManager(), _jspx_th_c_005furl_005f26_reused); + } + return false; + } + + private boolean _jspx_meth_c_005furl_005f27(javax.servlet.jsp.PageContext _jspx_page_context) + throws java.lang.Throwable { + javax.servlet.jsp.PageContext pageContext = _jspx_page_context; + javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); + // c:url + org.apache.taglibs.standard.tag.rt.core.UrlTag _jspx_th_c_005furl_005f27 = (org.apache.taglibs.standard.tag.rt.core.UrlTag) _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.get(org.apache.taglibs.standard.tag.rt.core.UrlTag.class); + boolean _jspx_th_c_005furl_005f27_reused = false; + try { + _jspx_th_c_005furl_005f27.setPageContext(_jspx_page_context); + _jspx_th_c_005furl_005f27.setParent(null); + // /WEB-INF/jsp/include/tail.jsp(49,13) name = value type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null + _jspx_th_c_005furl_005f27.setValue((java.lang.String) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("/resources/js/fims/framework/cmm/taskUtil.js?${ver}", java.lang.String.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null)); + int _jspx_eval_c_005furl_005f27 = _jspx_th_c_005furl_005f27.doStartTag(); + if (_jspx_th_c_005furl_005f27.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { + return true; + } + _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.reuse(_jspx_th_c_005furl_005f27); + _jspx_th_c_005furl_005f27_reused = true; + } finally { + org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_c_005furl_005f27, _jsp_getInstanceManager(), _jspx_th_c_005furl_005f27_reused); + } + return false; + } + + private boolean _jspx_meth_c_005furl_005f28(javax.servlet.jsp.PageContext _jspx_page_context) + throws java.lang.Throwable { + javax.servlet.jsp.PageContext pageContext = _jspx_page_context; + javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); + // c:url + org.apache.taglibs.standard.tag.rt.core.UrlTag _jspx_th_c_005furl_005f28 = (org.apache.taglibs.standard.tag.rt.core.UrlTag) _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.get(org.apache.taglibs.standard.tag.rt.core.UrlTag.class); + boolean _jspx_th_c_005furl_005f28_reused = false; + try { + _jspx_th_c_005furl_005f28.setPageContext(_jspx_page_context); + _jspx_th_c_005furl_005f28.setParent(null); + // /WEB-INF/jsp/include/tail.jsp(51,13) name = value type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null + _jspx_th_c_005furl_005f28.setValue((java.lang.String) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("/resources/lib/fims/framework/datepicker/datepicker.js?${ver}", java.lang.String.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null)); + int _jspx_eval_c_005furl_005f28 = _jspx_th_c_005furl_005f28.doStartTag(); + if (_jspx_th_c_005furl_005f28.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { + return true; + } + _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.reuse(_jspx_th_c_005furl_005f28); + _jspx_th_c_005furl_005f28_reused = true; + } finally { + org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_c_005furl_005f28, _jsp_getInstanceManager(), _jspx_th_c_005furl_005f28_reused); + } + return false; + } + + private boolean _jspx_meth_c_005furl_005f29(javax.servlet.jsp.PageContext _jspx_page_context) + throws java.lang.Throwable { + javax.servlet.jsp.PageContext pageContext = _jspx_page_context; + javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); + // c:url + org.apache.taglibs.standard.tag.rt.core.UrlTag _jspx_th_c_005furl_005f29 = (org.apache.taglibs.standard.tag.rt.core.UrlTag) _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.get(org.apache.taglibs.standard.tag.rt.core.UrlTag.class); + boolean _jspx_th_c_005furl_005f29_reused = false; + try { + _jspx_th_c_005furl_005f29.setPageContext(_jspx_page_context); + _jspx_th_c_005furl_005f29.setParent(null); + // /WEB-INF/jsp/include/tail.jsp(53,13) name = value type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null + _jspx_th_c_005furl_005f29.setValue((java.lang.String) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("/resources/js/fims/framework/cmm/initAfterPageLoad.js?${ver}", java.lang.String.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null)); + int _jspx_eval_c_005furl_005f29 = _jspx_th_c_005furl_005f29.doStartTag(); + if (_jspx_th_c_005furl_005f29.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { + return true; + } + _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.reuse(_jspx_th_c_005furl_005f29); + _jspx_th_c_005furl_005f29_reused = true; + } finally { + org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_c_005furl_005f29, _jsp_getInstanceManager(), _jspx_th_c_005furl_005f29_reused); + } + return false; + } + + private boolean _jspx_meth_c_005furl_005f30(javax.servlet.jsp.PageContext _jspx_page_context) + throws java.lang.Throwable { + javax.servlet.jsp.PageContext pageContext = _jspx_page_context; + javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); + // c:url + org.apache.taglibs.standard.tag.rt.core.UrlTag _jspx_th_c_005furl_005f30 = (org.apache.taglibs.standard.tag.rt.core.UrlTag) _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.get(org.apache.taglibs.standard.tag.rt.core.UrlTag.class); + boolean _jspx_th_c_005furl_005f30_reused = false; + try { + _jspx_th_c_005furl_005f30.setPageContext(_jspx_page_context); + _jspx_th_c_005furl_005f30.setParent(null); + // /WEB-INF/jsp/include/tail.jsp(55,13) name = value type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null + _jspx_th_c_005furl_005f30.setValue((java.lang.String) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("/resources/js/fims/framework/cmm/searchUtil.js?${ver}", java.lang.String.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null)); + int _jspx_eval_c_005furl_005f30 = _jspx_th_c_005furl_005f30.doStartTag(); + if (_jspx_th_c_005furl_005f30.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { + return true; + } + _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.reuse(_jspx_th_c_005furl_005f30); + _jspx_th_c_005furl_005f30_reused = true; + } finally { + org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_c_005furl_005f30, _jsp_getInstanceManager(), _jspx_th_c_005furl_005f30_reused); + } + return false; + } + + private boolean _jspx_meth_c_005furl_005f31(javax.servlet.jsp.PageContext _jspx_page_context) + throws java.lang.Throwable { + javax.servlet.jsp.PageContext pageContext = _jspx_page_context; + javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); + // c:url + org.apache.taglibs.standard.tag.rt.core.UrlTag _jspx_th_c_005furl_005f31 = (org.apache.taglibs.standard.tag.rt.core.UrlTag) _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.get(org.apache.taglibs.standard.tag.rt.core.UrlTag.class); + boolean _jspx_th_c_005furl_005f31_reused = false; + try { + _jspx_th_c_005furl_005f31.setPageContext(_jspx_page_context); + _jspx_th_c_005furl_005f31.setParent(null); + // /WEB-INF/jsp/include/tail.jsp(57,13) name = value type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null + _jspx_th_c_005furl_005f31.setValue((java.lang.String) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("/resources/js/fims/framework/cmm/downsize.js?${ver}", java.lang.String.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null)); + int _jspx_eval_c_005furl_005f31 = _jspx_th_c_005furl_005f31.doStartTag(); + if (_jspx_th_c_005furl_005f31.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { + return true; + } + _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.reuse(_jspx_th_c_005furl_005f31); + _jspx_th_c_005furl_005f31_reused = true; + } finally { + org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_c_005furl_005f31, _jsp_getInstanceManager(), _jspx_th_c_005furl_005f31_reused); + } + return false; + } + + private boolean _jspx_meth_c_005furl_005f32(javax.servlet.jsp.PageContext _jspx_page_context) + throws java.lang.Throwable { + javax.servlet.jsp.PageContext pageContext = _jspx_page_context; + javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); + // c:url + org.apache.taglibs.standard.tag.rt.core.UrlTag _jspx_th_c_005furl_005f32 = (org.apache.taglibs.standard.tag.rt.core.UrlTag) _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.get(org.apache.taglibs.standard.tag.rt.core.UrlTag.class); + boolean _jspx_th_c_005furl_005f32_reused = false; + try { + _jspx_th_c_005furl_005f32.setPageContext(_jspx_page_context); + _jspx_th_c_005furl_005f32.setParent(null); + // /WEB-INF/jsp/include/tail.jsp(59,13) name = value type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null + _jspx_th_c_005furl_005f32.setValue((java.lang.String) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("/resources/js/fims/framework/cmm/shortcutKey.js?${ver}", java.lang.String.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null)); + int _jspx_eval_c_005furl_005f32 = _jspx_th_c_005furl_005f32.doStartTag(); + if (_jspx_th_c_005furl_005f32.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { + return true; + } + _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.reuse(_jspx_th_c_005furl_005f32); + _jspx_th_c_005furl_005f32_reused = true; + } finally { + org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_c_005furl_005f32, _jsp_getInstanceManager(), _jspx_th_c_005furl_005f32_reused); + } + return false; + } + + private boolean _jspx_meth_c_005fset_005f0(javax.servlet.jsp.PageContext _jspx_page_context) + throws java.lang.Throwable { + javax.servlet.jsp.PageContext pageContext = _jspx_page_context; + javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); + // c:set + org.apache.taglibs.standard.tag.rt.core.SetTag _jspx_th_c_005fset_005f0 = (org.apache.taglibs.standard.tag.rt.core.SetTag) _005fjspx_005ftagPool_005fc_005fset_0026_005fvar_005fscope.get(org.apache.taglibs.standard.tag.rt.core.SetTag.class); + boolean _jspx_th_c_005fset_005f0_reused = false; + try { + _jspx_th_c_005fset_005f0.setPageContext(_jspx_page_context); + _jspx_th_c_005fset_005f0.setParent(null); + // /WEB-INF/jsp/include/tail.jsp(62,0) name = var type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null + _jspx_th_c_005fset_005f0.setVar("functions"); + // /WEB-INF/jsp/include/tail.jsp(62,0) name = scope type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null + _jspx_th_c_005fset_005f0.setScope("request"); + int _jspx_eval_c_005fset_005f0 = _jspx_th_c_005fset_005f0.doStartTag(); + if (_jspx_eval_c_005fset_005f0 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) { + if (_jspx_eval_c_005fset_005f0 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { + out = org.apache.jasper.runtime.JspRuntimeLibrary.startBufferedBody(_jspx_page_context, _jspx_th_c_005fset_005f0); + } + do { + out.write("\r\n"); + out.write("wctx.path = \""); + out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("${pageContext.request.contextPath}", java.lang.String.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null)); + out.write("\";\r\n"); + out.write("wctx.version = \""); + out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("${ver}", java.lang.String.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null)); + out.write("\";\r\n"); + out.write("wctx.trace = "); + out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("${!production}", java.lang.String.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null)); + out.write(";\r\n"); + out.write("wctx.csrf = {\r\n"); + out.write(" header:\""); + out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("${_csrf.headerName}", java.lang.String.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null)); + out.write("\",\r\n"); + out.write(" token:\""); + out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("${_csrf.token}", java.lang.String.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null)); + out.write("\"\r\n"); + out.write("};\r\n"); + out.write("dialog.title = \"XIT Base\";\r\n"); + out.write("\r\n"); + if (_jspx_meth_c_005fif_005f0(_jspx_th_c_005fset_005f0, _jspx_page_context)) + return true; + out.write("\r\n"); + out.write("\r\n"); + if (_jspx_meth_c_005fif_005f1(_jspx_th_c_005fset_005f0, _jspx_page_context)) + return true; + out.write("\r\n"); + out.write("\r\n"); + int evalDoAfterBody = _jspx_th_c_005fset_005f0.doAfterBody(); + if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN) + break; + } while (true); + if (_jspx_eval_c_005fset_005f0 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { + out = _jspx_page_context.popBody(); + } + } + if (_jspx_th_c_005fset_005f0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { + return true; + } + _005fjspx_005ftagPool_005fc_005fset_0026_005fvar_005fscope.reuse(_jspx_th_c_005fset_005f0); + _jspx_th_c_005fset_005f0_reused = true; + } finally { + org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_c_005fset_005f0, _jsp_getInstanceManager(), _jspx_th_c_005fset_005f0_reused); + } + return false; + } + + private boolean _jspx_meth_c_005fif_005f0(javax.servlet.jsp.tagext.JspTag _jspx_th_c_005fset_005f0, javax.servlet.jsp.PageContext _jspx_page_context) + throws java.lang.Throwable { + javax.servlet.jsp.PageContext pageContext = _jspx_page_context; + javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); + // c:if + org.apache.taglibs.standard.tag.rt.core.IfTag _jspx_th_c_005fif_005f0 = (org.apache.taglibs.standard.tag.rt.core.IfTag) _005fjspx_005ftagPool_005fc_005fif_0026_005ftest.get(org.apache.taglibs.standard.tag.rt.core.IfTag.class); + boolean _jspx_th_c_005fif_005f0_reused = false; + try { + _jspx_th_c_005fif_005f0.setPageContext(_jspx_page_context); + _jspx_th_c_005fif_005f0.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_c_005fset_005f0); + // /WEB-INF/jsp/include/tail.jsp(72,0) name = test type = boolean reqTime = true required = true fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null + _jspx_th_c_005fif_005f0.setTest(((java.lang.Boolean) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("${currentUser.authenticated}", boolean.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null)).booleanValue()); + int _jspx_eval_c_005fif_005f0 = _jspx_th_c_005fif_005f0.doStartTag(); + if (_jspx_eval_c_005fif_005f0 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) { + do { + out.write("\r\n"); + out.write("function logout() {\r\n"); + out.write(" dialog.alert({\r\n"); + out.write(" content:\"로그아웃 하시겠습니까?\",\r\n"); + out.write(" onOK:function(){\r\n"); + out.write(" var form = $(\"
\");\r\n"); + out.write(" $(\"\").appendTo(form);\r\n"); + out.write(" form.appendTo(\"body\").submit();\r\n"); + out.write(" }\r\n"); + out.write(" });\r\n"); + out.write("}"); + int evalDoAfterBody = _jspx_th_c_005fif_005f0.doAfterBody(); + if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN) + break; + } while (true); + } + if (_jspx_th_c_005fif_005f0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { + return true; + } + _005fjspx_005ftagPool_005fc_005fif_0026_005ftest.reuse(_jspx_th_c_005fif_005f0); + _jspx_th_c_005fif_005f0_reused = true; + } finally { + org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_c_005fif_005f0, _jsp_getInstanceManager(), _jspx_th_c_005fif_005f0_reused); + } + return false; + } + + private boolean _jspx_meth_c_005furl_005f33(javax.servlet.jsp.tagext.JspTag _jspx_th_c_005fif_005f0, javax.servlet.jsp.PageContext _jspx_page_context) + throws java.lang.Throwable { + javax.servlet.jsp.PageContext pageContext = _jspx_page_context; + javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); + // c:url + org.apache.taglibs.standard.tag.rt.core.UrlTag _jspx_th_c_005furl_005f33 = (org.apache.taglibs.standard.tag.rt.core.UrlTag) _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.get(org.apache.taglibs.standard.tag.rt.core.UrlTag.class); + boolean _jspx_th_c_005furl_005f33_reused = false; + try { + _jspx_th_c_005furl_005f33.setPageContext(_jspx_page_context); + _jspx_th_c_005furl_005f33.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_c_005fif_005f0); + // /WEB-INF/jsp/include/tail.jsp(77,32) name = value type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null + _jspx_th_c_005furl_005f33.setValue("/logout.do"); + int _jspx_eval_c_005furl_005f33 = _jspx_th_c_005furl_005f33.doStartTag(); + if (_jspx_th_c_005furl_005f33.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { + return true; + } + _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.reuse(_jspx_th_c_005furl_005f33); + _jspx_th_c_005furl_005f33_reused = true; + } finally { + org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_c_005furl_005f33, _jsp_getInstanceManager(), _jspx_th_c_005furl_005f33_reused); + } + return false; + } + + private boolean _jspx_meth_c_005fif_005f1(javax.servlet.jsp.tagext.JspTag _jspx_th_c_005fset_005f0, javax.servlet.jsp.PageContext _jspx_page_context) + throws java.lang.Throwable { + javax.servlet.jsp.PageContext pageContext = _jspx_page_context; + javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); + // c:if + org.apache.taglibs.standard.tag.rt.core.IfTag _jspx_th_c_005fif_005f1 = (org.apache.taglibs.standard.tag.rt.core.IfTag) _005fjspx_005ftagPool_005fc_005fif_0026_005ftest.get(org.apache.taglibs.standard.tag.rt.core.IfTag.class); + boolean _jspx_th_c_005fif_005f1_reused = false; + try { + _jspx_th_c_005fif_005f1.setPageContext(_jspx_page_context); + _jspx_th_c_005fif_005f1.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_c_005fset_005f0); + // /WEB-INF/jsp/include/tail.jsp(84,0) name = test type = boolean reqTime = true required = true fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null + _jspx_th_c_005fif_005f1.setTest(((java.lang.Boolean) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("${currentUser.hasAuthorities('ROLE_ADMIN')}", boolean.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null)).booleanValue()); + int _jspx_eval_c_005fif_005f1 = _jspx_th_c_005fif_005f1.doStartTag(); + if (_jspx_eval_c_005fif_005f1 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) { + do { + out.write("\r\n"); + out.write("async function selectURL(multiple) {\r\n"); + out.write(" return new Promise(function(resolve, reject) {\r\n"); + out.write(" ajax.get({\r\n"); + out.write(" url:wctx.url(\"/urls.do\"),\r\n"); + out.write(" data:{multiple:multiple},\r\n"); + out.write(" success: resp => {\r\n"); + out.write(" dialog.open({\r\n"); + out.write(" title:\"URL 선택\",\r\n"); + out.write(" content:resp,\r\n"); + out.write(" getData:() => getSelectedURL(),\r\n"); + out.write(" onOK:selected => {\r\n"); + out.write(" resolve(selected);\r\n"); + out.write(" }\r\n"); + out.write(" });\r\n"); + out.write(" }\r\n"); + out.write(" });\r\n"); + out.write(" });\r\n"); + out.write("}\r\n"); + int evalDoAfterBody = _jspx_th_c_005fif_005f1.doAfterBody(); + if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN) + break; + } while (true); + } + if (_jspx_th_c_005fif_005f1.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { + return true; + } + _005fjspx_005ftagPool_005fc_005fif_0026_005ftest.reuse(_jspx_th_c_005fif_005f1); + _jspx_th_c_005fif_005f1_reused = true; + } finally { + org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_c_005fif_005f1, _jsp_getInstanceManager(), _jspx_th_c_005fif_005f1_reused); + } + return false; + } +} diff --git a/work/Tomcat/localhost/ROOT/org/apache/jsp/WEB_002dINF/jsp/include/top_jsp.class b/work/Tomcat/localhost/ROOT/org/apache/jsp/WEB_002dINF/jsp/include/top_jsp.class new file mode 100644 index 00000000..b7c02eb1 Binary files /dev/null and b/work/Tomcat/localhost/ROOT/org/apache/jsp/WEB_002dINF/jsp/include/top_jsp.class differ diff --git a/work/Tomcat/localhost/ROOT/org/apache/jsp/WEB_002dINF/jsp/include/top_jsp.java b/work/Tomcat/localhost/ROOT/org/apache/jsp/WEB_002dINF/jsp/include/top_jsp.java new file mode 100644 index 00000000..f32f6f69 --- /dev/null +++ b/work/Tomcat/localhost/ROOT/org/apache/jsp/WEB_002dINF/jsp/include/top_jsp.java @@ -0,0 +1,509 @@ +/* + * Generated by the Jasper component of Apache Tomcat + * Version: Apache Tomcat/9.0.75 + * Generated at: 2023-10-10 04:27:23 UTC + * Note: The last modified time of this file was set to + * the last modified time of the source file after + * generation to assist with modification tracking. + */ +package org.apache.jsp.WEB_002dINF.jsp.include; + +import javax.servlet.*; +import javax.servlet.http.*; +import javax.servlet.jsp.*; + +public final class top_jsp extends org.apache.jasper.runtime.HttpJspBase + implements org.apache.jasper.runtime.JspSourceDependent, + org.apache.jasper.runtime.JspSourceImports { + + private static final javax.servlet.jsp.JspFactory _jspxFactory = + javax.servlet.jsp.JspFactory.getDefaultFactory(); + + private static java.util.Map _jspx_dependants; + + static { + _jspx_dependants = new java.util.HashMap(5); + _jspx_dependants.put("/WEB-INF/jsp/include/taglib.jsp", Long.valueOf(1696469747129L)); + _jspx_dependants.put("jar:file:/D:/repo/javax/servlet/jstl/1.2/jstl-1.2.jar!/META-INF/fmt.tld", Long.valueOf(1153352682000L)); + _jspx_dependants.put("file:/D:/repo/javax/servlet/jstl/1.2/jstl-1.2.jar", Long.valueOf(1678766202128L)); + _jspx_dependants.put("jar:file:/D:/repo/javax/servlet/jstl/1.2/jstl-1.2.jar!/META-INF/fn.tld", Long.valueOf(1153352682000L)); + _jspx_dependants.put("jar:file:/D:/repo/javax/servlet/jstl/1.2/jstl-1.2.jar!/META-INF/c.tld", Long.valueOf(1153352682000L)); + } + + private static final java.util.Set _jspx_imports_packages; + + private static final java.util.Set _jspx_imports_classes; + + static { + _jspx_imports_packages = new java.util.HashSet<>(); + _jspx_imports_packages.add("javax.servlet"); + _jspx_imports_packages.add("javax.servlet.http"); + _jspx_imports_packages.add("javax.servlet.jsp"); + _jspx_imports_classes = null; + } + + private org.apache.jasper.runtime.TagHandlerPool _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody; + private org.apache.jasper.runtime.TagHandlerPool _005fjspx_005ftagPool_005fc_005fset_0026_005fvar_005fscope; + + private volatile javax.el.ExpressionFactory _el_expressionfactory; + private volatile org.apache.tomcat.InstanceManager _jsp_instancemanager; + + public java.util.Map getDependants() { + return _jspx_dependants; + } + + public java.util.Set getPackageImports() { + return _jspx_imports_packages; + } + + public java.util.Set getClassImports() { + return _jspx_imports_classes; + } + + public javax.el.ExpressionFactory _jsp_getExpressionFactory() { + if (_el_expressionfactory == null) { + synchronized (this) { + if (_el_expressionfactory == null) { + _el_expressionfactory = _jspxFactory.getJspApplicationContext(getServletConfig().getServletContext()).getExpressionFactory(); + } + } + } + return _el_expressionfactory; + } + + public org.apache.tomcat.InstanceManager _jsp_getInstanceManager() { + if (_jsp_instancemanager == null) { + synchronized (this) { + if (_jsp_instancemanager == null) { + _jsp_instancemanager = org.apache.jasper.runtime.InstanceManagerFactory.getInstanceManager(getServletConfig()); + } + } + } + return _jsp_instancemanager; + } + + public void _jspInit() { + _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody = org.apache.jasper.runtime.TagHandlerPool.getTagHandlerPool(getServletConfig()); + _005fjspx_005ftagPool_005fc_005fset_0026_005fvar_005fscope = org.apache.jasper.runtime.TagHandlerPool.getTagHandlerPool(getServletConfig()); + } + + public void _jspDestroy() { + _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.release(); + _005fjspx_005ftagPool_005fc_005fset_0026_005fvar_005fscope.release(); + } + + public void _jspService(final javax.servlet.http.HttpServletRequest request, final javax.servlet.http.HttpServletResponse response) + throws java.io.IOException, javax.servlet.ServletException { + + if (!javax.servlet.DispatcherType.ERROR.equals(request.getDispatcherType())) { + final java.lang.String _jspx_method = request.getMethod(); + if ("OPTIONS".equals(_jspx_method)) { + response.setHeader("Allow","GET, HEAD, POST, OPTIONS"); + return; + } + if (!"GET".equals(_jspx_method) && !"POST".equals(_jspx_method) && !"HEAD".equals(_jspx_method)) { + response.setHeader("Allow","GET, HEAD, POST, OPTIONS"); + response.sendError(HttpServletResponse.SC_METHOD_NOT_ALLOWED, "JSPs only permit GET, POST or HEAD. Jasper also permits OPTIONS"); + return; + } + } + + final javax.servlet.jsp.PageContext pageContext; + final javax.servlet.ServletContext application; + final javax.servlet.ServletConfig config; + javax.servlet.jsp.JspWriter out = null; + final java.lang.Object page = this; + javax.servlet.jsp.JspWriter _jspx_out = null; + javax.servlet.jsp.PageContext _jspx_page_context = null; + + + try { + response.setContentType("text/html; charset=UTF-8"); + pageContext = _jspxFactory.getPageContext(this, request, response, + null, false, 8192, true); + _jspx_page_context = pageContext; + application = pageContext.getServletContext(); + config = pageContext.getServletConfig(); + out = pageContext.getOut(); + _jspx_out = out; + + out.write('\r'); + out.write('\n'); + out.write('\r'); + out.write('\n'); + out.write("\r\n"); + out.write("\r\n"); + out.write("\r\n"); + out.write("\r\n"); + if (_jspx_meth_c_005fset_005f0(_jspx_page_context)) + return; + out.write("\r\n"); + out.write("\r\n"); + } catch (java.lang.Throwable t) { + if (!(t instanceof javax.servlet.jsp.SkipPageException)){ + out = _jspx_out; + if (out != null && out.getBufferSize() != 0) + try { + if (response.isCommitted()) { + out.flush(); + } else { + out.clearBuffer(); + } + } catch (java.io.IOException e) {} + if (_jspx_page_context != null) _jspx_page_context.handlePageException(t); + else throw new ServletException(t); + } + } finally { + _jspxFactory.releasePageContext(_jspx_page_context); + } + } + + private boolean _jspx_meth_c_005furl_005f0(javax.servlet.jsp.PageContext _jspx_page_context) + throws java.lang.Throwable { + javax.servlet.jsp.PageContext pageContext = _jspx_page_context; + javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); + // c:url + org.apache.taglibs.standard.tag.rt.core.UrlTag _jspx_th_c_005furl_005f0 = (org.apache.taglibs.standard.tag.rt.core.UrlTag) _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.get(org.apache.taglibs.standard.tag.rt.core.UrlTag.class); + boolean _jspx_th_c_005furl_005f0_reused = false; + try { + _jspx_th_c_005furl_005f0.setPageContext(_jspx_page_context); + _jspx_th_c_005furl_005f0.setParent(null); + // /WEB-INF/jsp/include/top.jsp(72,22) name = value type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null + _jspx_th_c_005furl_005f0.setValue("/resources/image/user-circle-solid-24.png"); + int _jspx_eval_c_005furl_005f0 = _jspx_th_c_005furl_005f0.doStartTag(); + if (_jspx_th_c_005furl_005f0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { + return true; + } + _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.reuse(_jspx_th_c_005furl_005f0); + _jspx_th_c_005furl_005f0_reused = true; + } finally { + org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_c_005furl_005f0, _jsp_getInstanceManager(), _jspx_th_c_005furl_005f0_reused); + } + return false; + } + + private boolean _jspx_meth_c_005furl_005f1(javax.servlet.jsp.PageContext _jspx_page_context) + throws java.lang.Throwable { + javax.servlet.jsp.PageContext pageContext = _jspx_page_context; + javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); + // c:url + org.apache.taglibs.standard.tag.rt.core.UrlTag _jspx_th_c_005furl_005f1 = (org.apache.taglibs.standard.tag.rt.core.UrlTag) _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.get(org.apache.taglibs.standard.tag.rt.core.UrlTag.class); + boolean _jspx_th_c_005furl_005f1_reused = false; + try { + _jspx_th_c_005furl_005f1.setPageContext(_jspx_page_context); + _jspx_th_c_005furl_005f1.setParent(null); + // /WEB-INF/jsp/include/top.jsp(86,30) name = value type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null + _jspx_th_c_005furl_005f1.setValue("/resources/image/user-circle-solid-24.png"); + int _jspx_eval_c_005furl_005f1 = _jspx_th_c_005furl_005f1.doStartTag(); + if (_jspx_th_c_005furl_005f1.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { + return true; + } + _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.reuse(_jspx_th_c_005furl_005f1); + _jspx_th_c_005furl_005f1_reused = true; + } finally { + org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_c_005furl_005f1, _jsp_getInstanceManager(), _jspx_th_c_005furl_005f1_reused); + } + return false; + } + + private boolean _jspx_meth_c_005fset_005f0(javax.servlet.jsp.PageContext _jspx_page_context) + throws java.lang.Throwable { + javax.servlet.jsp.PageContext pageContext = _jspx_page_context; + javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); + // c:set + org.apache.taglibs.standard.tag.rt.core.SetTag _jspx_th_c_005fset_005f0 = (org.apache.taglibs.standard.tag.rt.core.SetTag) _005fjspx_005ftagPool_005fc_005fset_0026_005fvar_005fscope.get(org.apache.taglibs.standard.tag.rt.core.SetTag.class); + boolean _jspx_th_c_005fset_005f0_reused = false; + try { + _jspx_th_c_005fset_005f0.setPageContext(_jspx_page_context); + _jspx_th_c_005fset_005f0.setParent(null); + // /WEB-INF/jsp/include/top.jsp(167,0) name = var type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null + _jspx_th_c_005fset_005f0.setVar("topScript"); + // /WEB-INF/jsp/include/top.jsp(167,0) name = scope type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null + _jspx_th_c_005fset_005f0.setScope("request"); + int _jspx_eval_c_005fset_005f0 = _jspx_th_c_005fset_005f0.doStartTag(); + if (_jspx_eval_c_005fset_005f0 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) { + if (_jspx_eval_c_005fset_005f0 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { + out = org.apache.jasper.runtime.JspRuntimeLibrary.startBufferedBody(_jspx_page_context, _jspx_th_c_005fset_005f0); + } + do { + out.write("\r\n"); + out.write("function showHelp(){\r\n"); + out.write(" dialog.alert({\r\n"); + out.write(" content: '070-4490-74XX',\r\n"); + out.write(" timeout: 0\r\n"); + out.write(" });\r\n"); + out.write("}\r\n"); + out.write("\r\n"); + out.write("/*\r\n"); + out.write(" * 보안모드 토글 처리\r\n"); + out.write(" */\r\n"); + out.write("function fn_securityModeToggle(flag, elementId){\r\n"); + out.write(" \r\n"); + out.write(" var executionArea;\r\n"); + out.write(" if(elementId){\r\n"); + out.write(" executionArea = $(\"#\"+elementId);\r\n"); + out.write(" } else {\r\n"); + out.write(" executionArea = $(document);\r\n"); + out.write(" }\r\n"); + out.write("\r\n"); + out.write(" var targets = executionArea.find(\"input.privacy\");\r\n"); + out.write(" for(let i=0; i< targets.length; i++){\r\n"); + out.write(" let originId = targets[i].id;\r\n"); + out.write(" let originValue= targets[i].value;\r\n"); + out.write(" let maskingValue = originValue.replace(/[0-9a-zA-Z]/g, \"*\");\r\n"); + out.write(" document.getElementById(\"mask-\"+originId).value = maskingValue;\r\n"); + out.write(" }\r\n"); + out.write(" \r\n"); + out.write(" if(flag){ //개인정보 숨김\r\n"); + out.write("\r\n"); + out.write(" //입력상자\r\n"); + out.write(" $(\"input.privacy\").attr(\"hidden\",\"hidden\");\r\n"); + out.write(" $(\"input.privacy-mask\").removeAttr(\"hidden\");\r\n"); + out.write("\r\n"); + out.write(" //그리드\r\n"); + out.write(" $(\"th.privacy\").attr(\"hidden\",\"hidden\");\r\n"); + out.write(" $(\"td.privacy\").attr(\"hidden\",\"hidden\");\r\n"); + out.write(" $(\"th.privacy-mask\").removeAttr(\"hidden\");\r\n"); + out.write(" $(\"td.privacy-mask\").removeAttr(\"hidden\");\r\n"); + out.write("\r\n"); + out.write(" } else { //개인정보 표시\r\n"); + out.write("\r\n"); + out.write(" //입력상자\r\n"); + out.write(" $(\"input.privacy\").removeAttr(\"hidden\");\r\n"); + out.write(" $(\"input.privacy-mask\").attr(\"hidden\",\"hidden\");\r\n"); + out.write("\r\n"); + out.write(" $(\"th.privacy\").removeAttr(\"hidden\");\r\n"); + out.write(" $(\"td.privacy\").removeAttr(\"hidden\");\r\n"); + out.write(" $(\"th.privacy-mask\").attr(\"hidden\",\"hidden\");\r\n"); + out.write(" $(\"td.privacy-mask\").attr(\"hidden\",\"hidden\");\r\n"); + out.write("\r\n"); + out.write(" }\r\n"); + out.write("\r\n"); + out.write("}\r\n"); + out.write("\r\n"); + out.write("/*--------------------- 사용자 메뉴얼 클릭 이벤트 ---------------------*/\r\n"); + out.write("$(\"#btnDownloadMenual--top\").on( \"click\", function() {\r\n"); + out.write("\r\n"); + out.write(" ajax.get({\r\n"); + out.write(" url : wctx.url(\"/file/downloadMenual.do\"),\r\n"); + out.write(" data : { },\r\n"); + out.write(" xhrFields:{ responseType: 'blob' },\r\n"); + out.write(" success : (resp) => {\r\n"); + out.write(" var fileName = \"메뉴얼.pptx\";\r\n"); + out.write(" \r\n"); + out.write(" var URL = window.URL || window.webkitURL;\r\n"); + out.write(" var downloadUrl = URL.createObjectURL(resp);\r\n"); + out.write(" \r\n"); + out.write(" var a = document.createElement(\"a\");\r\n"); + out.write(" a.href = downloadUrl;\r\n"); + out.write(" a.download = fileName;\r\n"); + out.write(" document.body.appendChild(a);\r\n"); + out.write(" a.click();\r\n"); + out.write(" document.body.removeChild(a);\r\n"); + out.write(" }\r\n"); + out.write(" });\r\n"); + out.write(" \r\n"); + out.write("});\r\n"); + out.write("\r\n"); + out.write("/*--------------------- 보안모드 체크박스 클릭 이벤트 ---------------------*/\r\n"); + out.write("$(\"#securityMode--top\").on( \"click\", function() {\r\n"); + out.write(" if($(\"#securityMode--top\").is(\":checked\")){\r\n"); + out.write(" fn_securityModeToggle(true);\r\n"); + out.write(" } else {\r\n"); + out.write(" fn_securityModeToggle(false);\r\n"); + out.write(" }\r\n"); + out.write("});\r\n"); + int evalDoAfterBody = _jspx_th_c_005fset_005f0.doAfterBody(); + if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN) + break; + } while (true); + if (_jspx_eval_c_005fset_005f0 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { + out = _jspx_page_context.popBody(); + } + } + if (_jspx_th_c_005fset_005f0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { + return true; + } + _005fjspx_005ftagPool_005fc_005fset_0026_005fvar_005fscope.reuse(_jspx_th_c_005fset_005f0); + _jspx_th_c_005fset_005f0_reused = true; + } finally { + org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_c_005fset_005f0, _jsp_getInstanceManager(), _jspx_th_c_005fset_005f0_reused); + } + return false; + } +} diff --git a/work/Tomcat/localhost/ROOT/org/apache/jsp/WEB_002dINF/jsp/include/userMenus_jsp.class b/work/Tomcat/localhost/ROOT/org/apache/jsp/WEB_002dINF/jsp/include/userMenus_jsp.class new file mode 100644 index 00000000..fbbf5b8a Binary files /dev/null and b/work/Tomcat/localhost/ROOT/org/apache/jsp/WEB_002dINF/jsp/include/userMenus_jsp.class differ diff --git a/work/Tomcat/localhost/ROOT/org/apache/jsp/WEB_002dINF/jsp/include/userMenus_jsp.java b/work/Tomcat/localhost/ROOT/org/apache/jsp/WEB_002dINF/jsp/include/userMenus_jsp.java new file mode 100644 index 00000000..ff1a8077 --- /dev/null +++ b/work/Tomcat/localhost/ROOT/org/apache/jsp/WEB_002dINF/jsp/include/userMenus_jsp.java @@ -0,0 +1,252 @@ +/* + * Generated by the Jasper component of Apache Tomcat + * Version: Apache Tomcat/9.0.75 + * Generated at: 2023-10-10 04:27:23 UTC + * Note: The last modified time of this file was set to + * the last modified time of the source file after + * generation to assist with modification tracking. + */ +package org.apache.jsp.WEB_002dINF.jsp.include; + +import javax.servlet.*; +import javax.servlet.http.*; +import javax.servlet.jsp.*; + +public final class userMenus_jsp extends org.apache.jasper.runtime.HttpJspBase + implements org.apache.jasper.runtime.JspSourceDependent, + org.apache.jasper.runtime.JspSourceImports { + + private static final javax.servlet.jsp.JspFactory _jspxFactory = + javax.servlet.jsp.JspFactory.getDefaultFactory(); + + private static java.util.Map _jspx_dependants; + + static { + _jspx_dependants = new java.util.HashMap(5); + _jspx_dependants.put("/WEB-INF/jsp/include/taglib.jsp", Long.valueOf(1696469747129L)); + _jspx_dependants.put("jar:file:/D:/repo/javax/servlet/jstl/1.2/jstl-1.2.jar!/META-INF/fmt.tld", Long.valueOf(1153352682000L)); + _jspx_dependants.put("file:/D:/repo/javax/servlet/jstl/1.2/jstl-1.2.jar", Long.valueOf(1678766202128L)); + _jspx_dependants.put("jar:file:/D:/repo/javax/servlet/jstl/1.2/jstl-1.2.jar!/META-INF/fn.tld", Long.valueOf(1153352682000L)); + _jspx_dependants.put("jar:file:/D:/repo/javax/servlet/jstl/1.2/jstl-1.2.jar!/META-INF/c.tld", Long.valueOf(1153352682000L)); + } + + private static final java.util.Set _jspx_imports_packages; + + private static final java.util.Set _jspx_imports_classes; + + static { + _jspx_imports_packages = new java.util.HashSet<>(); + _jspx_imports_packages.add("javax.servlet"); + _jspx_imports_packages.add("javax.servlet.http"); + _jspx_imports_packages.add("javax.servlet.jsp"); + _jspx_imports_classes = null; + } + + private org.apache.jasper.runtime.TagHandlerPool _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody; + private org.apache.jasper.runtime.TagHandlerPool _005fjspx_005ftagPool_005fc_005fset_0026_005fvar_005fscope; + + private volatile javax.el.ExpressionFactory _el_expressionfactory; + private volatile org.apache.tomcat.InstanceManager _jsp_instancemanager; + + public java.util.Map getDependants() { + return _jspx_dependants; + } + + public java.util.Set getPackageImports() { + return _jspx_imports_packages; + } + + public java.util.Set getClassImports() { + return _jspx_imports_classes; + } + + public javax.el.ExpressionFactory _jsp_getExpressionFactory() { + if (_el_expressionfactory == null) { + synchronized (this) { + if (_el_expressionfactory == null) { + _el_expressionfactory = _jspxFactory.getJspApplicationContext(getServletConfig().getServletContext()).getExpressionFactory(); + } + } + } + return _el_expressionfactory; + } + + public org.apache.tomcat.InstanceManager _jsp_getInstanceManager() { + if (_jsp_instancemanager == null) { + synchronized (this) { + if (_jsp_instancemanager == null) { + _jsp_instancemanager = org.apache.jasper.runtime.InstanceManagerFactory.getInstanceManager(getServletConfig()); + } + } + } + return _jsp_instancemanager; + } + + public void _jspInit() { + _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody = org.apache.jasper.runtime.TagHandlerPool.getTagHandlerPool(getServletConfig()); + _005fjspx_005ftagPool_005fc_005fset_0026_005fvar_005fscope = org.apache.jasper.runtime.TagHandlerPool.getTagHandlerPool(getServletConfig()); + } + + public void _jspDestroy() { + _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.release(); + _005fjspx_005ftagPool_005fc_005fset_0026_005fvar_005fscope.release(); + } + + public void _jspService(final javax.servlet.http.HttpServletRequest request, final javax.servlet.http.HttpServletResponse response) + throws java.io.IOException, javax.servlet.ServletException { + + if (!javax.servlet.DispatcherType.ERROR.equals(request.getDispatcherType())) { + final java.lang.String _jspx_method = request.getMethod(); + if ("OPTIONS".equals(_jspx_method)) { + response.setHeader("Allow","GET, HEAD, POST, OPTIONS"); + return; + } + if (!"GET".equals(_jspx_method) && !"POST".equals(_jspx_method) && !"HEAD".equals(_jspx_method)) { + response.setHeader("Allow","GET, HEAD, POST, OPTIONS"); + response.sendError(HttpServletResponse.SC_METHOD_NOT_ALLOWED, "JSPs only permit GET, POST or HEAD. Jasper also permits OPTIONS"); + return; + } + } + + final javax.servlet.jsp.PageContext pageContext; + final javax.servlet.ServletContext application; + final javax.servlet.ServletConfig config; + javax.servlet.jsp.JspWriter out = null; + final java.lang.Object page = this; + javax.servlet.jsp.JspWriter _jspx_out = null; + javax.servlet.jsp.PageContext _jspx_page_context = null; + + + try { + response.setContentType("text/html; charset=UTF-8"); + pageContext = _jspxFactory.getPageContext(this, request, response, + null, false, 8192, true); + _jspx_page_context = pageContext; + application = pageContext.getServletContext(); + config = pageContext.getServletConfig(); + out = pageContext.getOut(); + _jspx_out = out; + + out.write('\r'); + out.write('\n'); + out.write('\r'); + out.write('\n'); + out.write("\r\n"); + out.write("\r\n"); + out.write("\r\n"); + out.write("\r\n"); + if (_jspx_meth_c_005fset_005f0(_jspx_page_context)) + return; + } catch (java.lang.Throwable t) { + if (!(t instanceof javax.servlet.jsp.SkipPageException)){ + out = _jspx_out; + if (out != null && out.getBufferSize() != 0) + try { + if (response.isCommitted()) { + out.flush(); + } else { + out.clearBuffer(); + } + } catch (java.io.IOException e) {} + if (_jspx_page_context != null) _jspx_page_context.handlePageException(t); + else throw new ServletException(t); + } + } finally { + _jspxFactory.releasePageContext(_jspx_page_context); + } + } + + private boolean _jspx_meth_c_005furl_005f0(javax.servlet.jsp.PageContext _jspx_page_context) + throws java.lang.Throwable { + javax.servlet.jsp.PageContext pageContext = _jspx_page_context; + javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); + // c:url + org.apache.taglibs.standard.tag.rt.core.UrlTag _jspx_th_c_005furl_005f0 = (org.apache.taglibs.standard.tag.rt.core.UrlTag) _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.get(org.apache.taglibs.standard.tag.rt.core.UrlTag.class); + boolean _jspx_th_c_005furl_005f0_reused = false; + try { + _jspx_th_c_005furl_005f0.setPageContext(_jspx_page_context); + _jspx_th_c_005furl_005f0.setParent(null); + // /WEB-INF/jsp/include/userMenus.jsp(8,19) name = value type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null + _jspx_th_c_005furl_005f0.setValue("/"); + int _jspx_eval_c_005furl_005f0 = _jspx_th_c_005furl_005f0.doStartTag(); + if (_jspx_th_c_005furl_005f0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { + return true; + } + _005fjspx_005ftagPool_005fc_005furl_0026_005fvalue_005fnobody.reuse(_jspx_th_c_005furl_005f0); + _jspx_th_c_005furl_005f0_reused = true; + } finally { + org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_c_005furl_005f0, _jsp_getInstanceManager(), _jspx_th_c_005furl_005f0_reused); + } + return false; + } + + private boolean _jspx_meth_c_005fset_005f0(javax.servlet.jsp.PageContext _jspx_page_context) + throws java.lang.Throwable { + javax.servlet.jsp.PageContext pageContext = _jspx_page_context; + javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); + // c:set + org.apache.taglibs.standard.tag.rt.core.SetTag _jspx_th_c_005fset_005f0 = (org.apache.taglibs.standard.tag.rt.core.SetTag) _005fjspx_005ftagPool_005fc_005fset_0026_005fvar_005fscope.get(org.apache.taglibs.standard.tag.rt.core.SetTag.class); + boolean _jspx_th_c_005fset_005f0_reused = false; + try { + _jspx_th_c_005fset_005f0.setPageContext(_jspx_page_context); + _jspx_th_c_005fset_005f0.setParent(null); + // /WEB-INF/jsp/include/userMenus.jsp(22,0) name = var type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null + _jspx_th_c_005fset_005f0.setVar("userMenus"); + // /WEB-INF/jsp/include/userMenus.jsp(22,0) name = scope type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null + _jspx_th_c_005fset_005f0.setScope("request"); + int _jspx_eval_c_005fset_005f0 = _jspx_th_c_005fset_005f0.doStartTag(); + if (_jspx_eval_c_005fset_005f0 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) { + if (_jspx_eval_c_005fset_005f0 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { + out = org.apache.jasper.runtime.JspRuntimeLibrary.startBufferedBody(_jspx_page_context, _jspx_th_c_005fset_005f0); + } + do { + out.write("\r\n"); + out.write("\r\n"); + out.write("let userMenus = "); + out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("${userMenus}", java.lang.String.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null)); + out.write(";\r\n"); + out.write("\r\n"); + out.write("function setUserMenus(menus) {\r\n"); + out.write(" let menuSupport = new FimsMenuSupport(\"#layout-menu\").setMenuInfo(menus).setActive(wctx.current());\r\n"); + out.write(" let currentMenu = menuSupport.getMenu(wctx.current());\r\n"); + out.write("}\r\n"); + out.write("\r\n"); + out.write("setUserMenus(userMenus);\r\n"); + int evalDoAfterBody = _jspx_th_c_005fset_005f0.doAfterBody(); + if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN) + break; + } while (true); + if (_jspx_eval_c_005fset_005f0 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { + out = _jspx_page_context.popBody(); + } + } + if (_jspx_th_c_005fset_005f0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { + return true; + } + _005fjspx_005ftagPool_005fc_005fset_0026_005fvar_005fscope.reuse(_jspx_th_c_005fset_005f0); + _jspx_th_c_005fset_005f0_reused = true; + } finally { + org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_c_005fset_005f0, _jsp_getInstanceManager(), _jspx_th_c_005fset_005f0_reused); + } + return false; + } +} diff --git a/work/Tomcat/localhost/ROOT/org/apache/jsp/WEB_002dINF/jsp/index_jsp.class b/work/Tomcat/localhost/ROOT/org/apache/jsp/WEB_002dINF/jsp/index_jsp.class new file mode 100644 index 00000000..ecc78518 Binary files /dev/null and b/work/Tomcat/localhost/ROOT/org/apache/jsp/WEB_002dINF/jsp/index_jsp.class differ diff --git a/work/Tomcat/localhost/ROOT/org/apache/jsp/WEB_002dINF/jsp/index_jsp.java b/work/Tomcat/localhost/ROOT/org/apache/jsp/WEB_002dINF/jsp/index_jsp.java new file mode 100644 index 00000000..695baae2 --- /dev/null +++ b/work/Tomcat/localhost/ROOT/org/apache/jsp/WEB_002dINF/jsp/index_jsp.java @@ -0,0 +1,308 @@ +/* + * Generated by the Jasper component of Apache Tomcat + * Version: Apache Tomcat/9.0.75 + * Generated at: 2023-10-10 04:27:22 UTC + * Note: The last modified time of this file was set to + * the last modified time of the source file after + * generation to assist with modification tracking. + */ +package org.apache.jsp.WEB_002dINF.jsp; + +import javax.servlet.*; +import javax.servlet.http.*; +import javax.servlet.jsp.*; + +public final class index_jsp extends org.apache.jasper.runtime.HttpJspBase + implements org.apache.jasper.runtime.JspSourceDependent, + org.apache.jasper.runtime.JspSourceImports { + + private static final javax.servlet.jsp.JspFactory _jspxFactory = + javax.servlet.jsp.JspFactory.getDefaultFactory(); + + private static java.util.Map _jspx_dependants; + + static { + _jspx_dependants = new java.util.HashMap(5); + _jspx_dependants.put("/WEB-INF/jsp/include/taglib.jsp", Long.valueOf(1696469747129L)); + _jspx_dependants.put("jar:file:/D:/repo/javax/servlet/jstl/1.2/jstl-1.2.jar!/META-INF/fmt.tld", Long.valueOf(1153352682000L)); + _jspx_dependants.put("file:/D:/repo/javax/servlet/jstl/1.2/jstl-1.2.jar", Long.valueOf(1678766202128L)); + _jspx_dependants.put("jar:file:/D:/repo/javax/servlet/jstl/1.2/jstl-1.2.jar!/META-INF/fn.tld", Long.valueOf(1153352682000L)); + _jspx_dependants.put("jar:file:/D:/repo/javax/servlet/jstl/1.2/jstl-1.2.jar!/META-INF/c.tld", Long.valueOf(1153352682000L)); + } + + private static final java.util.Set _jspx_imports_packages; + + private static final java.util.Set _jspx_imports_classes; + + static { + _jspx_imports_packages = new java.util.HashSet<>(); + _jspx_imports_packages.add("javax.servlet"); + _jspx_imports_packages.add("javax.servlet.http"); + _jspx_imports_packages.add("javax.servlet.jsp"); + _jspx_imports_classes = null; + } + + private org.apache.jasper.runtime.TagHandlerPool _005fjspx_005ftagPool_005fc_005fset_0026_005fvar; + + private volatile javax.el.ExpressionFactory _el_expressionfactory; + private volatile org.apache.tomcat.InstanceManager _jsp_instancemanager; + + public java.util.Map getDependants() { + return _jspx_dependants; + } + + public java.util.Set getPackageImports() { + return _jspx_imports_packages; + } + + public java.util.Set getClassImports() { + return _jspx_imports_classes; + } + + public javax.el.ExpressionFactory _jsp_getExpressionFactory() { + if (_el_expressionfactory == null) { + synchronized (this) { + if (_el_expressionfactory == null) { + _el_expressionfactory = _jspxFactory.getJspApplicationContext(getServletConfig().getServletContext()).getExpressionFactory(); + } + } + } + return _el_expressionfactory; + } + + public org.apache.tomcat.InstanceManager _jsp_getInstanceManager() { + if (_jsp_instancemanager == null) { + synchronized (this) { + if (_jsp_instancemanager == null) { + _jsp_instancemanager = org.apache.jasper.runtime.InstanceManagerFactory.getInstanceManager(getServletConfig()); + } + } + } + return _jsp_instancemanager; + } + + public void _jspInit() { + _005fjspx_005ftagPool_005fc_005fset_0026_005fvar = org.apache.jasper.runtime.TagHandlerPool.getTagHandlerPool(getServletConfig()); + } + + public void _jspDestroy() { + _005fjspx_005ftagPool_005fc_005fset_0026_005fvar.release(); + } + + public void _jspService(final javax.servlet.http.HttpServletRequest request, final javax.servlet.http.HttpServletResponse response) + throws java.io.IOException, javax.servlet.ServletException { + + if (!javax.servlet.DispatcherType.ERROR.equals(request.getDispatcherType())) { + final java.lang.String _jspx_method = request.getMethod(); + if ("OPTIONS".equals(_jspx_method)) { + response.setHeader("Allow","GET, HEAD, POST, OPTIONS"); + return; + } + if (!"GET".equals(_jspx_method) && !"POST".equals(_jspx_method) && !"HEAD".equals(_jspx_method)) { + response.setHeader("Allow","GET, HEAD, POST, OPTIONS"); + response.sendError(HttpServletResponse.SC_METHOD_NOT_ALLOWED, "JSPs only permit GET, POST or HEAD. Jasper also permits OPTIONS"); + return; + } + } + + final javax.servlet.jsp.PageContext pageContext; + final javax.servlet.ServletContext application; + final javax.servlet.ServletConfig config; + javax.servlet.jsp.JspWriter out = null; + final java.lang.Object page = this; + javax.servlet.jsp.JspWriter _jspx_out = null; + javax.servlet.jsp.PageContext _jspx_page_context = null; + + + try { + response.setContentType("text/html; charset=UTF-8"); + pageContext = _jspxFactory.getPageContext(this, request, response, + null, false, 8192, true); + _jspx_page_context = pageContext; + application = pageContext.getServletContext(); + config = pageContext.getServletConfig(); + out = pageContext.getOut(); + _jspx_out = out; + + out.write('\r'); + out.write('\n'); + out.write('\r'); + out.write('\n'); + out.write('\r'); + out.write('\n'); + org.apache.jasper.runtime.JspRuntimeLibrary.include(request, response, "/WEB-INF/jsp/include/head.jsp", out, false); + out.write("\r\n"); + out.write("\r\n"); + out.write("
\r\n"); + out.write("
\r\n"); + out.write(" "); + org.apache.jasper.runtime.JspRuntimeLibrary.include(request, response, "/WEB-INF/jsp/include/userMenus.jsp", out, false); + out.write("\r\n"); + out.write("
\r\n"); + out.write(" "); + org.apache.jasper.runtime.JspRuntimeLibrary.include(request, response, "/WEB-INF/jsp/include/top.jsp", out, false); + out.write("\r\n"); + out.write("\r\n"); + out.write("
\r\n"); + out.write("
    \r\n"); + out.write("
  • \r\n"); + out.write(" \r\n"); + out.write("
  • \r\n"); + out.write("
\r\n"); + out.write("
\r\n"); + out.write("
\r\n"); + out.write("
\r\n"); + out.write("
\r\n"); + out.write("
\r\n"); + out.write("
\r\n"); + out.write(" "); + org.apache.jasper.runtime.JspRuntimeLibrary.include(request, response, "/WEB-INF/jsp/include/dashboard.jsp", out, false); + out.write("\r\n"); + out.write("
\r\n"); + out.write("
\r\n"); + out.write("
\r\n"); + out.write("
\r\n"); + out.write("
\r\n"); + out.write("
\r\n"); + out.write("
\r\n"); + out.write("
\r\n"); + out.write("\r\n"); + out.write(" "); + org.apache.jasper.runtime.JspRuntimeLibrary.include(request, response, "/WEB-INF/jsp/include/tail.jsp", out, false); + out.write("\r\n"); + out.write(" \r\n"); + out.write(" "); + if (_jspx_meth_c_005fset_005f0(_jspx_page_context)) + return; + out.write("\r\n"); + out.write(" \r\n"); + out.write(" \r\n"); + out.write("\r\n"); + out.write(""); + } catch (java.lang.Throwable t) { + if (!(t instanceof javax.servlet.jsp.SkipPageException)){ + out = _jspx_out; + if (out != null && out.getBufferSize() != 0) + try { + if (response.isCommitted()) { + out.flush(); + } else { + out.clearBuffer(); + } + } catch (java.io.IOException e) {} + if (_jspx_page_context != null) _jspx_page_context.handlePageException(t); + else throw new ServletException(t); + } + } finally { + _jspxFactory.releasePageContext(_jspx_page_context); + } + } + + private boolean _jspx_meth_c_005fset_005f0(javax.servlet.jsp.PageContext _jspx_page_context) + throws java.lang.Throwable { + javax.servlet.jsp.PageContext pageContext = _jspx_page_context; + javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); + // c:set + org.apache.taglibs.standard.tag.rt.core.SetTag _jspx_th_c_005fset_005f0 = (org.apache.taglibs.standard.tag.rt.core.SetTag) _005fjspx_005ftagPool_005fc_005fset_0026_005fvar.get(org.apache.taglibs.standard.tag.rt.core.SetTag.class); + boolean _jspx_th_c_005fset_005f0_reused = false; + try { + _jspx_th_c_005fset_005f0.setPageContext(_jspx_page_context); + _jspx_th_c_005fset_005f0.setParent(null); + // /WEB-INF/jsp/index.jsp(39,4) name = var type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null + _jspx_th_c_005fset_005f0.setVar("onload"); + int _jspx_eval_c_005fset_005f0 = _jspx_th_c_005fset_005f0.doStartTag(); + if (_jspx_eval_c_005fset_005f0 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) { + if (_jspx_eval_c_005fset_005f0 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { + out = org.apache.jasper.runtime.JspRuntimeLibrary.startBufferedBody(_jspx_page_context, _jspx_th_c_005fset_005f0); + } + do { + out.write("\r\n"); + out.write(" $(\"#layout-navbar input[name='taskSeCd'][value='DPV']\").prop(\"checked\",true);\r\n"); + out.write(" "); + int evalDoAfterBody = _jspx_th_c_005fset_005f0.doAfterBody(); + if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN) + break; + } while (true); + if (_jspx_eval_c_005fset_005f0 != javax.servlet.jsp.tagext.Tag.EVAL_BODY_INCLUDE) { + out = _jspx_page_context.popBody(); + } + } + if (_jspx_th_c_005fset_005f0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { + return true; + } + _005fjspx_005ftagPool_005fc_005fset_0026_005fvar.reuse(_jspx_th_c_005fset_005f0); + _jspx_th_c_005fset_005f0_reused = true; + } finally { + org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_c_005fset_005f0, _jsp_getInstanceManager(), _jspx_th_c_005fset_005f0_reused); + } + return false; + } +}