diff --git a/.metadata/.plugins/eclipse/configuration/org.eclipse.oomph.setup/installation.setup b/.metadata/.plugins/eclipse/configuration/org.eclipse.oomph.setup/installation.setup new file mode 100644 index 00000000..e6d61f6f --- /dev/null +++ b/.metadata/.plugins/eclipse/configuration/org.eclipse.oomph.setup/installation.setup @@ -0,0 +1,9 @@ + + + + diff --git a/.metadata/.plugins/org.eclipse.compare/dialog_settings.xml b/.metadata/.plugins/org.eclipse.compare/dialog_settings.xml new file mode 100644 index 00000000..e93a039e --- /dev/null +++ b/.metadata/.plugins/org.eclipse.compare/dialog_settings.xml @@ -0,0 +1,9 @@ + +
+
+ + + + +
+
diff --git a/.metadata/.plugins/org.eclipse.core.resources/.history/0/509c36adfb95001c145be16138a6394c b/.metadata/.plugins/org.eclipse.core.resources/.history/0/509c36adfb95001c145be16138a6394c new file mode 100644 index 00000000..99b8043d Binary files /dev/null and b/.metadata/.plugins/org.eclipse.core.resources/.history/0/509c36adfb95001c145be16138a6394c differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.history/0/6041949afb95001c145be16138a6394c b/.metadata/.plugins/org.eclipse.core.resources/.history/0/6041949afb95001c145be16138a6394c new file mode 100644 index 00000000..74a4c041 Binary files /dev/null and b/.metadata/.plugins/org.eclipse.core.resources/.history/0/6041949afb95001c145be16138a6394c differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.history/0/708a2eb1fb95001c145be16138a6394c b/.metadata/.plugins/org.eclipse.core.resources/.history/0/708a2eb1fb95001c145be16138a6394c new file mode 100644 index 00000000..733e3f20 Binary files /dev/null and b/.metadata/.plugins/org.eclipse.core.resources/.history/0/708a2eb1fb95001c145be16138a6394c differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.history/0/900258a9fb95001c145be16138a6394c b/.metadata/.plugins/org.eclipse.core.resources/.history/0/900258a9fb95001c145be16138a6394c new file mode 100644 index 00000000..b11a8558 --- /dev/null +++ b/.metadata/.plugins/org.eclipse.core.resources/.history/0/900258a9fb95001c145be16138a6394c @@ -0,0 +1,115 @@ +package pkg.service.impl; + +import java.util.List; + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import egovframework.rte.cmmn.SampleDefaultVO; +import egovframework.rte.fdl.cmmn.AbstractServiceImpl; +import egovframework.rte.fdl.idgnr.EgovIdGnrService; +import pkg.service.EgovSample2Service; +import pkg.service.Sample2VO; + + +/** + * @Class Name : EgovSample2ServiceImpl.java + * @Description : Sample2 Business Implement class + * @Modification Information + * @ + * @ 수정일 수정자 수정내용 + * @ ------- -------- --------------------------- + * @ 2009.02.01 홍길동 최초 생성 + * + * @author 실행환경 개발팀 홍길동 + * @since 2009.02.01 + * @version 1.0 + * @see + * + * Copyright (C) 2009 by MOSPA All right reserved. + */ + +@Service("sample2Service") +public class EgovSample2ServiceImpl extends AbstractServiceImpl implements + EgovSample2Service { + + @Resource(name="sample2DAO") + private Sample2DAO sample2DAO; + + /** ID Generation */ + @Resource(name="egovSample2IdGnrService") + private EgovIdGnrService egovIdGnrService; + + /** + * SAMPLE2을 등록한다. + * @param vo - 등록할 정보가 담긴 Sample2VO + * @return 등록 결과 + * @exception Exception + */ + public String insertSample2(Sample2VO vo) throws Exception { + log.debug(vo.toString()); + + /** ID Generation Service */ + String id = egovIdGnrService.getNextStringId(); + vo.setId(id); + log.debug(vo.toString()); + + sample2DAO.insertSample2(vo); + return id; + } + + /** + * SAMPLE2을 수정한다. + * @param vo - 수정할 정보가 담긴 Sample2VO + * @return void형 + * @exception Exception + */ + public void updateSample2(Sample2VO vo) throws Exception { + sample2DAO.updateSample2(vo); + } + + /** + * SAMPLE2을 삭제한다. + * @param vo - 삭제할 정보가 담긴 Sample2VO + * @return void형 + * @exception Exception + */ + public void deleteSample2(Sample2VO vo) throws Exception { + sample2DAO.deleteSample2(vo); + } + + /** + * SAMPLE2을 조회한다. + * @param vo - 조회할 정보가 담긴 Sample2VO + * @return 조회한 SAMPLE2 + * @exception Exception + */ + public Sample2VO selectSample2(Sample2VO vo) throws Exception { + Sample2VO resultVO = sample2DAO.selectSample2(vo); + if (resultVO == null) + throw processException("info.nodata.msg"); + return resultVO; + } + + /** + * SAMPLE2 목록을 조회한다. + * @param searchVO - 조회할 정보가 담긴 VO + * @return SAMPLE2 목록 + * @exception Exception + */ + public List selectSample2List(SampleDefaultVO searchVO) throws Exception { + return sample2DAO.selectSample2List(searchVO); + } + + /** + * SAMPLE2 총 갯수를 조회한다. + * @param searchVO - 조회할 정보가 담긴 VO + * @return SAMPLE2 총 갯수 + * @exception + */ + public int selectSample2ListTotCnt(SampleDefaultVO searchVO) { + return sample2DAO.selectSample2ListTotCnt(searchVO); + } + +} diff --git a/.metadata/.plugins/org.eclipse.core.resources/.history/0/a07e0c9bfb95001c145be16138a6394c b/.metadata/.plugins/org.eclipse.core.resources/.history/0/a07e0c9bfb95001c145be16138a6394c new file mode 100644 index 00000000..cf61877c Binary files /dev/null and b/.metadata/.plugins/org.eclipse.core.resources/.history/0/a07e0c9bfb95001c145be16138a6394c differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.history/0/c0c6a297fb95001c145be16138a6394c b/.metadata/.plugins/org.eclipse.core.resources/.history/0/c0c6a297fb95001c145be16138a6394c new file mode 100644 index 00000000..0439303f Binary files /dev/null and b/.metadata/.plugins/org.eclipse.core.resources/.history/0/c0c6a297fb95001c145be16138a6394c differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.history/0/c0da5887fb95001c145be16138a6394c b/.metadata/.plugins/org.eclipse.core.resources/.history/0/c0da5887fb95001c145be16138a6394c new file mode 100644 index 00000000..fbf235fa Binary files /dev/null and b/.metadata/.plugins/org.eclipse.core.resources/.history/0/c0da5887fb95001c145be16138a6394c differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.history/0/f02efc8cfb95001c145be16138a6394c b/.metadata/.plugins/org.eclipse.core.resources/.history/0/f02efc8cfb95001c145be16138a6394c new file mode 100644 index 00000000..679ff605 Binary files /dev/null and b/.metadata/.plugins/org.eclipse.core.resources/.history/0/f02efc8cfb95001c145be16138a6394c differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.history/0/f0365c3d0196001c1c42df7bf6a47d99 b/.metadata/.plugins/org.eclipse.core.resources/.history/0/f0365c3d0196001c1c42df7bf6a47d99 new file mode 100644 index 00000000..4139edde Binary files /dev/null and b/.metadata/.plugins/org.eclipse.core.resources/.history/0/f0365c3d0196001c1c42df7bf6a47d99 differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.history/1/10064da9fb95001c145be16138a6394c b/.metadata/.plugins/org.eclipse.core.resources/.history/1/10064da9fb95001c145be16138a6394c new file mode 100644 index 00000000..e7da7eff Binary files /dev/null and b/.metadata/.plugins/org.eclipse.core.resources/.history/1/10064da9fb95001c145be16138a6394c differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.history/1/10fd0fa9fb95001c145be16138a6394c b/.metadata/.plugins/org.eclipse.core.resources/.history/1/10fd0fa9fb95001c145be16138a6394c new file mode 100644 index 00000000..cf8c1c3d --- /dev/null +++ b/.metadata/.plugins/org.eclipse.core.resources/.history/1/10fd0fa9fb95001c145be16138a6394c @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.metadata/.plugins/org.eclipse.core.resources/.history/1/40663ca2fb95001c145be16138a6394c b/.metadata/.plugins/org.eclipse.core.resources/.history/1/40663ca2fb95001c145be16138a6394c new file mode 100644 index 00000000..e0df6015 Binary files /dev/null and b/.metadata/.plugins/org.eclipse.core.resources/.history/1/40663ca2fb95001c145be16138a6394c differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.history/1/606b2e95fb95001c145be16138a6394c b/.metadata/.plugins/org.eclipse.core.resources/.history/1/606b2e95fb95001c145be16138a6394c new file mode 100644 index 00000000..9ac62793 Binary files /dev/null and b/.metadata/.plugins/org.eclipse.core.resources/.history/1/606b2e95fb95001c145be16138a6394c differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.history/1/70c28ca2f695001c1924f7bfa4761d81 b/.metadata/.plugins/org.eclipse.core.resources/.history/1/70c28ca2f695001c1924f7bfa4761d81 new file mode 100644 index 00000000..66bff492 Binary files /dev/null and b/.metadata/.plugins/org.eclipse.core.resources/.history/1/70c28ca2f695001c1924f7bfa4761d81 differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.history/1/b0c844a9fb95001c145be16138a6394c b/.metadata/.plugins/org.eclipse.core.resources/.history/1/b0c844a9fb95001c145be16138a6394c new file mode 100644 index 00000000..6f2bcfbb --- /dev/null +++ b/.metadata/.plugins/org.eclipse.core.resources/.history/1/b0c844a9fb95001c145be16138a6394c @@ -0,0 +1,2 @@ +txtTransactionName=tran1 +txtDatasourceName=ds1 \ No newline at end of file diff --git a/.metadata/.plugins/org.eclipse.core.resources/.history/1/c07d33affb95001c145be16138a6394c b/.metadata/.plugins/org.eclipse.core.resources/.history/1/c07d33affb95001c145be16138a6394c new file mode 100644 index 00000000..d5e4c27a Binary files /dev/null and b/.metadata/.plugins/org.eclipse.core.resources/.history/1/c07d33affb95001c145be16138a6394c differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.history/1/d02c47affb95001c145be16138a6394c b/.metadata/.plugins/org.eclipse.core.resources/.history/1/d02c47affb95001c145be16138a6394c new file mode 100644 index 00000000..39592008 Binary files /dev/null and b/.metadata/.plugins/org.eclipse.core.resources/.history/1/d02c47affb95001c145be16138a6394c differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.history/1/d0b569a9fb95001c145be16138a6394c b/.metadata/.plugins/org.eclipse.core.resources/.history/1/d0b569a9fb95001c145be16138a6394c new file mode 100644 index 00000000..4945c42d --- /dev/null +++ b/.metadata/.plugins/org.eclipse.core.resources/.history/1/d0b569a9fb95001c145be16138a6394c @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.metadata/.plugins/org.eclipse.core.resources/.history/1/d0e3e59afb95001c145be16138a6394c b/.metadata/.plugins/org.eclipse.core.resources/.history/1/d0e3e59afb95001c145be16138a6394c new file mode 100644 index 00000000..b7268fd5 Binary files /dev/null and b/.metadata/.plugins/org.eclipse.core.resources/.history/1/d0e3e59afb95001c145be16138a6394c differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.history/1/f046d9a6fb95001c145be16138a6394c b/.metadata/.plugins/org.eclipse.core.resources/.history/1/f046d9a6fb95001c145be16138a6394c new file mode 100644 index 00000000..6c0934be Binary files /dev/null and b/.metadata/.plugins/org.eclipse.core.resources/.history/1/f046d9a6fb95001c145be16138a6394c differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.history/1/f054438efb95001c145be16138a6394c b/.metadata/.plugins/org.eclipse.core.resources/.history/1/f054438efb95001c145be16138a6394c new file mode 100644 index 00000000..906f206f Binary files /dev/null and b/.metadata/.plugins/org.eclipse.core.resources/.history/1/f054438efb95001c145be16138a6394c differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.history/10/007ff88ffb95001c145be16138a6394c b/.metadata/.plugins/org.eclipse.core.resources/.history/10/007ff88ffb95001c145be16138a6394c new file mode 100644 index 00000000..4caf4be6 Binary files /dev/null and b/.metadata/.plugins/org.eclipse.core.resources/.history/10/007ff88ffb95001c145be16138a6394c differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.history/10/1072fb89fb95001c145be16138a6394c b/.metadata/.plugins/org.eclipse.core.resources/.history/10/1072fb89fb95001c145be16138a6394c new file mode 100644 index 00000000..422923ab Binary files /dev/null and b/.metadata/.plugins/org.eclipse.core.resources/.history/10/1072fb89fb95001c145be16138a6394c differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.history/10/10c2f396fb95001c145be16138a6394c b/.metadata/.plugins/org.eclipse.core.resources/.history/10/10c2f396fb95001c145be16138a6394c new file mode 100644 index 00000000..4ee847a8 Binary files /dev/null and b/.metadata/.plugins/org.eclipse.core.resources/.history/10/10c2f396fb95001c145be16138a6394c differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.history/10/20431aa3fb95001c145be16138a6394c b/.metadata/.plugins/org.eclipse.core.resources/.history/10/20431aa3fb95001c145be16138a6394c new file mode 100644 index 00000000..7ddc4fe4 Binary files /dev/null and b/.metadata/.plugins/org.eclipse.core.resources/.history/10/20431aa3fb95001c145be16138a6394c differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.history/10/204766b2fb95001c145be16138a6394c b/.metadata/.plugins/org.eclipse.core.resources/.history/10/204766b2fb95001c145be16138a6394c new file mode 100644 index 00000000..ce00ed26 Binary files /dev/null and b/.metadata/.plugins/org.eclipse.core.resources/.history/10/204766b2fb95001c145be16138a6394c differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.history/10/402c36987e94001c1015bea359c8c5bd b/.metadata/.plugins/org.eclipse.core.resources/.history/10/402c36987e94001c1015bea359c8c5bd new file mode 100644 index 00000000..86e3b706 Binary files /dev/null and b/.metadata/.plugins/org.eclipse.core.resources/.history/10/402c36987e94001c1015bea359c8c5bd differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.history/10/60eedfa1fb95001c145be16138a6394c b/.metadata/.plugins/org.eclipse.core.resources/.history/10/60eedfa1fb95001c145be16138a6394c new file mode 100644 index 00000000..344dcb27 Binary files /dev/null and b/.metadata/.plugins/org.eclipse.core.resources/.history/10/60eedfa1fb95001c145be16138a6394c differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.history/10/70c049abfb95001c145be16138a6394c b/.metadata/.plugins/org.eclipse.core.resources/.history/10/70c049abfb95001c145be16138a6394c new file mode 100644 index 00000000..f63a3f81 Binary files /dev/null and b/.metadata/.plugins/org.eclipse.core.resources/.history/10/70c049abfb95001c145be16138a6394c differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.history/10/80942b9afb95001c145be16138a6394c b/.metadata/.plugins/org.eclipse.core.resources/.history/10/80942b9afb95001c145be16138a6394c new file mode 100644 index 00000000..af767ab5 Binary files /dev/null and b/.metadata/.plugins/org.eclipse.core.resources/.history/10/80942b9afb95001c145be16138a6394c differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.history/10/c0faf2a4fb95001c145be16138a6394c b/.metadata/.plugins/org.eclipse.core.resources/.history/10/c0faf2a4fb95001c145be16138a6394c new file mode 100644 index 00000000..3c6af5dd --- /dev/null +++ b/.metadata/.plugins/org.eclipse.core.resources/.history/10/c0faf2a4fb95001c145be16138a6394c @@ -0,0 +1,71 @@ +/* + * Copyright 2008-2009 the original author or authors. + * + * Licensed 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 egovframework.dev.imp.dbio.wizard; + +import java.io.ByteArrayInputStream; +import java.io.InputStream; + +import org.eclipse.jface.viewers.IStructuredSelection; +import org.eclipse.ui.dialogs.WizardNewFileCreationPage; + +import egovframework.dev.imp.dbio.DBIOPlugin; +import egovframework.dev.imp.dbio.common.DbioMessages; + +/** + * NewSqlMap WizardPage + * @author 개발환경 개발팀 김형조 + * @since 2009.02.20 + * @version 1.0 + * @see + * + *
+ * << 개정이력(Modification Information) >>
+ *   
+ *   수정일      수정자           수정내용
+ *  -------    --------    ---------------------------
+ *   2009.02.20    김형조      최초 생성
+ *
+ * 
+ * 
+ */ +public class NewSqlMapWizardPage extends WizardNewFileCreationPage { + + /** + * 생성자 + * + * @param selection + */ + public NewSqlMapWizardPage(IStructuredSelection selection) { + super(NewSqlMapWizardPage.class.getName(), selection); + setAllowExistingResources(false); + setFileExtension("xml"); //$NON-NLS-1$ + + setImageDescriptor(DBIOPlugin.getDefault().getImageDescriptor(DBIOPlugin.IMG_SQL_MAP_WIZ_BANNER)); + + setTitle(DbioMessages.NewSqlMapWizardPage_1); + setDescription(DbioMessages.NewSqlMapWizardPage_2); + + } + + @Override + protected InputStream getInitialContents() { + String data = "\n" + //$NON-NLS-1$ + "\n" + //$NON-NLS-1$ + ""; //$NON-NLS-1$ + return new ByteArrayInputStream(data.getBytes()); + } +} diff --git a/.metadata/.plugins/org.eclipse.core.resources/.history/10/d028028afb95001c145be16138a6394c b/.metadata/.plugins/org.eclipse.core.resources/.history/10/d028028afb95001c145be16138a6394c new file mode 100644 index 00000000..07b928ab Binary files /dev/null and b/.metadata/.plugins/org.eclipse.core.resources/.history/10/d028028afb95001c145be16138a6394c differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.history/10/e091628dfb95001c145be16138a6394c b/.metadata/.plugins/org.eclipse.core.resources/.history/10/e091628dfb95001c145be16138a6394c new file mode 100644 index 00000000..7aef258a Binary files /dev/null and b/.metadata/.plugins/org.eclipse.core.resources/.history/10/e091628dfb95001c145be16138a6394c differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.history/11/00650da9fb95001c145be16138a6394c b/.metadata/.plugins/org.eclipse.core.resources/.history/11/00650da9fb95001c145be16138a6394c new file mode 100644 index 00000000..814f03a1 --- /dev/null +++ b/.metadata/.plugins/org.eclipse.core.resources/.history/11/00650da9fb95001c145be16138a6394c @@ -0,0 +1,45 @@ + + + + New Table ID Generation + + + + Create Table ID Generation + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.metadata/.plugins/org.eclipse.core.resources/.history/11/201f79a9fb95001c145be16138a6394c b/.metadata/.plugins/org.eclipse.core.resources/.history/11/201f79a9fb95001c145be16138a6394c new file mode 100644 index 00000000..3814e41b --- /dev/null +++ b/.metadata/.plugins/org.eclipse.core.resources/.history/11/201f79a9fb95001c145be16138a6394c @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/.metadata/.plugins/org.eclipse.core.resources/.history/11/404e2392fb95001c145be16138a6394c b/.metadata/.plugins/org.eclipse.core.resources/.history/11/404e2392fb95001c145be16138a6394c new file mode 100644 index 00000000..c24168c0 Binary files /dev/null and b/.metadata/.plugins/org.eclipse.core.resources/.history/11/404e2392fb95001c145be16138a6394c differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.history/11/40e565a9fb95001c145be16138a6394c b/.metadata/.plugins/org.eclipse.core.resources/.history/11/40e565a9fb95001c145be16138a6394c new file mode 100644 index 00000000..f51cc838 --- /dev/null +++ b/.metadata/.plugins/org.eclipse.core.resources/.history/11/40e565a9fb95001c145be16138a6394c @@ -0,0 +1,95 @@ +<%@ page contentType="text/html; charset=utf-8" pageEncoding="utf-8"%> +<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> +<%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn" %> +<% + /** + * @Class Name : egovSample2Register.java + * @Description : Sample2 Register 화면 + * @Modification Information + * @ + * @ 수정일 수정자 수정내용 + * @ ------- -------- --------------------------- + * @ 2009.02.01 홍길동 최초 생성 + * + * @author 실행환경 개발팀 홍길동 + * @since 2009.02.01 + * @version 1.0 + * @see + * + * Copyright (C) 2009 by MOSPA All right reserved. + */ +%> + + + + + +Sample2 <c:out value="${registerFlag}"/> + + + + +
" + onsubmit="javascript:return FormValidation(document.detailForm);" > +
+ Sample2 +
+ +
:
+
+
+
:
+
+
:
+
+ +
+
+
+
+
:
+
+
+ +
+
+
+
+
+
:
+
readonly="readonly" value="" + required="true" fieldTitle="RegUser" maxLength="10" char="s" />
+
+
+ + + + +
+
+ + + + +
+ + + diff --git a/.metadata/.plugins/org.eclipse.core.resources/.history/11/60145caffb95001c145be16138a6394c b/.metadata/.plugins/org.eclipse.core.resources/.history/11/60145caffb95001c145be16138a6394c new file mode 100644 index 00000000..40ba494d Binary files /dev/null and b/.metadata/.plugins/org.eclipse.core.resources/.history/11/60145caffb95001c145be16138a6394c differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.history/11/702862b2fb95001c145be16138a6394c b/.metadata/.plugins/org.eclipse.core.resources/.history/11/702862b2fb95001c145be16138a6394c new file mode 100644 index 00000000..2359f8fc Binary files /dev/null and b/.metadata/.plugins/org.eclipse.core.resources/.history/11/702862b2fb95001c145be16138a6394c differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.history/11/70d9adabfb95001c145be16138a6394c b/.metadata/.plugins/org.eclipse.core.resources/.history/11/70d9adabfb95001c145be16138a6394c new file mode 100644 index 00000000..efd7dcf2 Binary files /dev/null and b/.metadata/.plugins/org.eclipse.core.resources/.history/11/70d9adabfb95001c145be16138a6394c differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.history/11/c0eb62b2fb95001c145be16138a6394c b/.metadata/.plugins/org.eclipse.core.resources/.history/11/c0eb62b2fb95001c145be16138a6394c new file mode 100644 index 00000000..c694611a Binary files /dev/null and b/.metadata/.plugins/org.eclipse.core.resources/.history/11/c0eb62b2fb95001c145be16138a6394c differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.history/11/d07ad5aafb95001c145be16138a6394c b/.metadata/.plugins/org.eclipse.core.resources/.history/11/d07ad5aafb95001c145be16138a6394c new file mode 100644 index 00000000..1b2be7ed Binary files /dev/null and b/.metadata/.plugins/org.eclipse.core.resources/.history/11/d07ad5aafb95001c145be16138a6394c differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.history/11/e03b45b0fb95001c145be16138a6394c b/.metadata/.plugins/org.eclipse.core.resources/.history/11/e03b45b0fb95001c145be16138a6394c new file mode 100644 index 00000000..0827ec5a Binary files /dev/null and b/.metadata/.plugins/org.eclipse.core.resources/.history/11/e03b45b0fb95001c145be16138a6394c differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.history/12/10e742affb95001c145be16138a6394c b/.metadata/.plugins/org.eclipse.core.resources/.history/12/10e742affb95001c145be16138a6394c new file mode 100644 index 00000000..74e86fc0 Binary files /dev/null and b/.metadata/.plugins/org.eclipse.core.resources/.history/12/10e742affb95001c145be16138a6394c differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.history/12/40fcb29ffb95001c145be16138a6394c b/.metadata/.plugins/org.eclipse.core.resources/.history/12/40fcb29ffb95001c145be16138a6394c new file mode 100644 index 00000000..fa98072e Binary files /dev/null and b/.metadata/.plugins/org.eclipse.core.resources/.history/12/40fcb29ffb95001c145be16138a6394c differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.history/12/5095dbaafb95001c145be16138a6394c b/.metadata/.plugins/org.eclipse.core.resources/.history/12/5095dbaafb95001c145be16138a6394c new file mode 100644 index 00000000..7e7fe8fd Binary files /dev/null and b/.metadata/.plugins/org.eclipse.core.resources/.history/12/5095dbaafb95001c145be16138a6394c differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.history/12/605fe98bfb95001c145be16138a6394c b/.metadata/.plugins/org.eclipse.core.resources/.history/12/605fe98bfb95001c145be16138a6394c new file mode 100644 index 00000000..f9a6b46b Binary files /dev/null and b/.metadata/.plugins/org.eclipse.core.resources/.history/12/605fe98bfb95001c145be16138a6394c differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.history/12/60df0392fb95001c145be16138a6394c b/.metadata/.plugins/org.eclipse.core.resources/.history/12/60df0392fb95001c145be16138a6394c new file mode 100644 index 00000000..ea5cb738 Binary files /dev/null and b/.metadata/.plugins/org.eclipse.core.resources/.history/12/60df0392fb95001c145be16138a6394c differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.history/12/b0d4019ffb95001c145be16138a6394c b/.metadata/.plugins/org.eclipse.core.resources/.history/12/b0d4019ffb95001c145be16138a6394c new file mode 100644 index 00000000..3c6f95b3 Binary files /dev/null and b/.metadata/.plugins/org.eclipse.core.resources/.history/12/b0d4019ffb95001c145be16138a6394c differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.history/12/c03478a9fb95001c145be16138a6394c b/.metadata/.plugins/org.eclipse.core.resources/.history/12/c03478a9fb95001c145be16138a6394c new file mode 100644 index 00000000..02524861 --- /dev/null +++ b/.metadata/.plugins/org.eclipse.core.resources/.history/12/c03478a9fb95001c145be16138a6394c @@ -0,0 +1,10 @@ + + + + + + + + + \ No newline at end of file diff --git a/.metadata/.plugins/org.eclipse.core.resources/.history/12/c0c3cf9afb95001c145be16138a6394c b/.metadata/.plugins/org.eclipse.core.resources/.history/12/c0c3cf9afb95001c145be16138a6394c new file mode 100644 index 00000000..3deded38 Binary files /dev/null and b/.metadata/.plugins/org.eclipse.core.resources/.history/12/c0c3cf9afb95001c145be16138a6394c differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.history/12/e03a54b1fb95001c145be16138a6394c b/.metadata/.plugins/org.eclipse.core.resources/.history/12/e03a54b1fb95001c145be16138a6394c new file mode 100644 index 00000000..7838731f Binary files /dev/null and b/.metadata/.plugins/org.eclipse.core.resources/.history/12/e03a54b1fb95001c145be16138a6394c differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.history/12/f04ac287fb95001c145be16138a6394c b/.metadata/.plugins/org.eclipse.core.resources/.history/12/f04ac287fb95001c145be16138a6394c new file mode 100644 index 00000000..5f393303 Binary files /dev/null and b/.metadata/.plugins/org.eclipse.core.resources/.history/12/f04ac287fb95001c145be16138a6394c differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.history/13/10e167a9fb95001c145be16138a6394c b/.metadata/.plugins/org.eclipse.core.resources/.history/13/10e167a9fb95001c145be16138a6394c new file mode 100644 index 00000000..7768ef04 --- /dev/null +++ b/.metadata/.plugins/org.eclipse.core.resources/.history/13/10e167a9fb95001c145be16138a6394c @@ -0,0 +1,44 @@ +Service + package + className + +ServiceImpl + serviceName + package + className + +DAO + daoName + package + className + +VO + package + voName + +SQLMap + package + fileName + +ControllerClass +ListPage +RegisterPage +---------------------------------------------- +package +Entity + name + uppercaseName + lowercaseName + camelcaseName + pascalcaseName + Attrivute[] attributes + Attrivute[] primaryKeys + +Attribute + name + type + uppercaseName + lowercaseName + camelcaseName + pascalcaseName + diff --git a/.metadata/.plugins/org.eclipse.core.resources/.history/13/10ef3ba9fb95001c145be16138a6394c b/.metadata/.plugins/org.eclipse.core.resources/.history/13/10ef3ba9fb95001c145be16138a6394c new file mode 100644 index 00000000..2410b5e2 --- /dev/null +++ b/.metadata/.plugins/org.eclipse.core.resources/.history/13/10ef3ba9fb95001c145be16138a6394c @@ -0,0 +1,3 @@ +txtIdServiceName=idservice +txtDatasourceName=ds1 +txtQuery=select seq from tbl_seq diff --git a/.metadata/.plugins/org.eclipse.core.resources/.history/13/5009f487fb95001c145be16138a6394c b/.metadata/.plugins/org.eclipse.core.resources/.history/13/5009f487fb95001c145be16138a6394c new file mode 100644 index 00000000..bf8a43dd Binary files /dev/null and b/.metadata/.plugins/org.eclipse.core.resources/.history/13/5009f487fb95001c145be16138a6394c differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.history/13/60f40daffb95001c145be16138a6394c b/.metadata/.plugins/org.eclipse.core.resources/.history/13/60f40daffb95001c145be16138a6394c new file mode 100644 index 00000000..1fb0bb76 Binary files /dev/null and b/.metadata/.plugins/org.eclipse.core.resources/.history/13/60f40daffb95001c145be16138a6394c differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.history/13/b01100affb95001c145be16138a6394c b/.metadata/.plugins/org.eclipse.core.resources/.history/13/b01100affb95001c145be16138a6394c new file mode 100644 index 00000000..2f240918 Binary files /dev/null and b/.metadata/.plugins/org.eclipse.core.resources/.history/13/b01100affb95001c145be16138a6394c differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.history/13/e0156fb1fb95001c145be16138a6394c b/.metadata/.plugins/org.eclipse.core.resources/.history/13/e0156fb1fb95001c145be16138a6394c new file mode 100644 index 00000000..4a52896d Binary files /dev/null and b/.metadata/.plugins/org.eclipse.core.resources/.history/13/e0156fb1fb95001c145be16138a6394c differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.history/14/101b0ba9fb95001c145be16138a6394c b/.metadata/.plugins/org.eclipse.core.resources/.history/14/101b0ba9fb95001c145be16138a6394c new file mode 100644 index 00000000..cd5209f7 --- /dev/null +++ b/.metadata/.plugins/org.eclipse.core.resources/.history/14/101b0ba9fb95001c145be16138a6394c @@ -0,0 +1,36 @@ + + + + New Sequence ID Generation + + + + Create Sequence ID Generation + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.metadata/.plugins/org.eclipse.core.resources/.history/14/101d5ea9fb95001c145be16138a6394c b/.metadata/.plugins/org.eclipse.core.resources/.history/14/101d5ea9fb95001c145be16138a6394c new file mode 100644 index 00000000..fcb96137 --- /dev/null +++ b/.metadata/.plugins/org.eclipse.core.resources/.history/14/101d5ea9fb95001c145be16138a6394c @@ -0,0 +1,143 @@ +package pkg.web; + +import java.util.List; + +import javax.annotation.Resource; + +import org.springframework.stereotype.Controller; +import org.springframework.ui.Model; +import org.springframework.ui.ModelMap; +import org.springframework.web.bind.annotation.ModelAttribute; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RequestParam; +import org.springframework.web.bind.annotation.SessionAttributes; +import org.springframework.web.bind.support.SessionStatus; + +import egovframework.rte.cmmn.SampleDefaultVO; +import egovframework.rte.fdl.property.EgovPropertyService; +import egovframework.rte.ptl.mvc.tags.ui.pagination.PaginationInfo; +import pkg.service.EgovSample2Service; +import pkg.service.Sample2VO; + +/** + * @Class Name : EgovSample2Controller.java + * @Description : Sample2 Controller class + * @Modification Information + * @ + * @ 수정일 수정자 수정내용 + * @ ------- -------- --------------------------- + * @ 2009.02.01 홍길동 최초 생성 + * + * @author 실행환경 개발팀 홍길동 + * @since 2009.02.01 + * @version 1.0 + * @see + * + * Copyright (C) 2009 by MOSPA All right reserved. + */ + +@Controller +@SessionAttributes(types=Sample2VO.class) +public class EgovSample2Controller { + + @Resource(name = "sample2Service") + private EgovSample2Service sample2Service; + + /** EgovPropertyService */ + @Resource(name = "propertiesService") + protected EgovPropertyService propertiesService; + + /** + * SAMPLE2 목록을 조회한다. (pageing) + * @param searchVO - 조회할 정보가 담긴 SampleDefaultVO + * @return "/sample2/egovSample2List" + * @exception Exception + */ + @RequestMapping(value="/sample2/egovSample2List.do") + public String selectSample2List(@ModelAttribute("searchVO") SampleDefaultVO searchVO, + ModelMap model) + throws Exception { + + /** EgovPropertyService.sample */ + searchVO.setPageUnit(propertiesService.getInt("pageUnit")); + searchVO.setPageSize(propertiesService.getInt("pageSize")); + + /** pageing */ + PaginationInfo paginationInfo = new PaginationInfo(); + paginationInfo.setCurrentPageNo(searchVO.getPageIndex()); + paginationInfo.setRecordCountPerPage(searchVO.getPageUnit()); + paginationInfo.setPageSize(searchVO.getPageSize()); + + searchVO.setFirstIndex(paginationInfo.getFirstRecordIndex()); + searchVO.setLastIndex(paginationInfo.getLastRecordIndex()); + searchVO.setRecordCountPerPage(paginationInfo.getRecordCountPerPage()); + + List sample2List = sample2Service.selectSample2List(searchVO); + model.addAttribute("resultList", sample2List); + + int totCnt = sample2Service.selectSample2ListTotCnt(searchVO); + paginationInfo.setTotalRecordCount(totCnt); + model.addAttribute("paginationInfo", paginationInfo); + + return "/sample2/egovSample2List"; + } + + @RequestMapping("/sample2/addSample2View.do") + public String addSample2View( + @ModelAttribute("searchVO") SampleDefaultVO searchVO, Model model) + throws Exception { + model.addAttribute("sample2VO", new Sample2VO()); + return "/sample2/egovSample2Register"; + } + + @RequestMapping("/sample2/addSample2.do") + public String addSample2( + Sample2VO sample2VO, + @ModelAttribute("searchVO") SampleDefaultVO searchVO, SessionStatus status) + throws Exception { + sample2Service.insertSample2(sample2VO); + status.setComplete(); + return "forward:/sample2/egovSample2List.do"; + } + + @RequestMapping("/sample2/updateSample2View.do") + public String updateSample2View( + @RequestParam("selectedId") String id , + @ModelAttribute("searchVO") SampleDefaultVO searchVO, Model model) + throws Exception { + Sample2VO sample2VO = new Sample2VO(); + sample2VO.setId(id); + // 변수명은 CoC 에 따라 sample2VO + model.addAttribute(selectSample2(sample2VO, searchVO)); + return "/sample2/egovSample2Register"; + } + + @RequestMapping("/sample2/selectSample2.do") + public @ModelAttribute("sample2VO") + Sample2VO selectSample2( + Sample2VO sample2VO, + @ModelAttribute("searchVO") SampleDefaultVO searchVO) throws Exception { + return sample2Service.selectSample2(sample2VO); + } + + @RequestMapping("/sample2/updateSample2.do") + public String updateSample2( + Sample2VO sample2VO, + @ModelAttribute("searchVO") SampleDefaultVO searchVO, SessionStatus status) + throws Exception { + sample2Service.updateSample2(sample2VO); + status.setComplete(); + return "forward:/sample2/egovSample2List.do"; + } + + @RequestMapping("/sample2/deleteSample2.do") + public String deleteSample2( + Sample2VO sample2VO, + @ModelAttribute("searchVO") SampleDefaultVO searchVO, SessionStatus status) + throws Exception { + sample2Service.deleteSample2(sample2VO); + status.setComplete(); + return "forward:/sample2/egovSample2List.do"; + } + +} diff --git a/.metadata/.plugins/org.eclipse.core.resources/.history/14/10d36587fb95001c145be16138a6394c b/.metadata/.plugins/org.eclipse.core.resources/.history/14/10d36587fb95001c145be16138a6394c new file mode 100644 index 00000000..c7067d95 Binary files /dev/null and b/.metadata/.plugins/org.eclipse.core.resources/.history/14/10d36587fb95001c145be16138a6394c differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.history/14/30203992fb95001c145be16138a6394c b/.metadata/.plugins/org.eclipse.core.resources/.history/14/30203992fb95001c145be16138a6394c new file mode 100644 index 00000000..a7e67d69 Binary files /dev/null and b/.metadata/.plugins/org.eclipse.core.resources/.history/14/30203992fb95001c145be16138a6394c differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.history/14/3026d8a1fb95001c145be16138a6394c b/.metadata/.plugins/org.eclipse.core.resources/.history/14/3026d8a1fb95001c145be16138a6394c new file mode 100644 index 00000000..8174e04f Binary files /dev/null and b/.metadata/.plugins/org.eclipse.core.resources/.history/14/3026d8a1fb95001c145be16138a6394c differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.history/14/402f558efb95001c145be16138a6394c b/.metadata/.plugins/org.eclipse.core.resources/.history/14/402f558efb95001c145be16138a6394c new file mode 100644 index 00000000..e0d396ff Binary files /dev/null and b/.metadata/.plugins/org.eclipse.core.resources/.history/14/402f558efb95001c145be16138a6394c differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.history/14/508161b1fb95001c145be16138a6394c b/.metadata/.plugins/org.eclipse.core.resources/.history/14/508161b1fb95001c145be16138a6394c new file mode 100644 index 00000000..682544ba Binary files /dev/null and b/.metadata/.plugins/org.eclipse.core.resources/.history/14/508161b1fb95001c145be16138a6394c differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.history/14/50858688fb95001c145be16138a6394c b/.metadata/.plugins/org.eclipse.core.resources/.history/14/50858688fb95001c145be16138a6394c new file mode 100644 index 00000000..b719e2a5 Binary files /dev/null and b/.metadata/.plugins/org.eclipse.core.resources/.history/14/50858688fb95001c145be16138a6394c differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.history/14/70a4558efb95001c145be16138a6394c b/.metadata/.plugins/org.eclipse.core.resources/.history/14/70a4558efb95001c145be16138a6394c new file mode 100644 index 00000000..87c453e0 Binary files /dev/null and b/.metadata/.plugins/org.eclipse.core.resources/.history/14/70a4558efb95001c145be16138a6394c differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.history/14/a0ddb295fb95001c145be16138a6394c b/.metadata/.plugins/org.eclipse.core.resources/.history/14/a0ddb295fb95001c145be16138a6394c new file mode 100644 index 00000000..4e972e9e Binary files /dev/null and b/.metadata/.plugins/org.eclipse.core.resources/.history/14/a0ddb295fb95001c145be16138a6394c differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.history/14/c07376b2fb95001c145be16138a6394c b/.metadata/.plugins/org.eclipse.core.resources/.history/14/c07376b2fb95001c145be16138a6394c new file mode 100644 index 00000000..a6bcd2f1 Binary files /dev/null and b/.metadata/.plugins/org.eclipse.core.resources/.history/14/c07376b2fb95001c145be16138a6394c differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.history/15/206d3cb1fb95001c145be16138a6394c b/.metadata/.plugins/org.eclipse.core.resources/.history/15/206d3cb1fb95001c145be16138a6394c new file mode 100644 index 00000000..edcf838a Binary files /dev/null and b/.metadata/.plugins/org.eclipse.core.resources/.history/15/206d3cb1fb95001c145be16138a6394c differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.history/15/304acca2fb95001c145be16138a6394c b/.metadata/.plugins/org.eclipse.core.resources/.history/15/304acca2fb95001c145be16138a6394c new file mode 100644 index 00000000..f4a2444a Binary files /dev/null and b/.metadata/.plugins/org.eclipse.core.resources/.history/15/304acca2fb95001c145be16138a6394c differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.history/15/30b77ba9fb95001c145be16138a6394c b/.metadata/.plugins/org.eclipse.core.resources/.history/15/30b77ba9fb95001c145be16138a6394c new file mode 100644 index 00000000..1535e30a --- /dev/null +++ b/.metadata/.plugins/org.eclipse.core.resources/.history/15/30b77ba9fb95001c145be16138a6394c @@ -0,0 +1,7 @@ + + + + java.naming.factory.initial=${initialFactory} + java.naming.provider.url=${providerUrl} + + \ No newline at end of file diff --git a/.metadata/.plugins/org.eclipse.core.resources/.history/15/402eeca2fb95001c145be16138a6394c b/.metadata/.plugins/org.eclipse.core.resources/.history/15/402eeca2fb95001c145be16138a6394c new file mode 100644 index 00000000..ef87e189 Binary files /dev/null and b/.metadata/.plugins/org.eclipse.core.resources/.history/15/402eeca2fb95001c145be16138a6394c differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.history/15/40dca095fb95001c145be16138a6394c b/.metadata/.plugins/org.eclipse.core.resources/.history/15/40dca095fb95001c145be16138a6394c new file mode 100644 index 00000000..bdb8f8fa Binary files /dev/null and b/.metadata/.plugins/org.eclipse.core.resources/.history/15/40dca095fb95001c145be16138a6394c differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.history/15/9095ddaefb95001c145be16138a6394c b/.metadata/.plugins/org.eclipse.core.resources/.history/15/9095ddaefb95001c145be16138a6394c new file mode 100644 index 00000000..1a96d953 Binary files /dev/null and b/.metadata/.plugins/org.eclipse.core.resources/.history/15/9095ddaefb95001c145be16138a6394c differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.history/15/b0660e92fb95001c145be16138a6394c b/.metadata/.plugins/org.eclipse.core.resources/.history/15/b0660e92fb95001c145be16138a6394c new file mode 100644 index 00000000..7032903f Binary files /dev/null and b/.metadata/.plugins/org.eclipse.core.resources/.history/15/b0660e92fb95001c145be16138a6394c differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.history/16/101f8387fb95001c145be16138a6394c b/.metadata/.plugins/org.eclipse.core.resources/.history/16/101f8387fb95001c145be16138a6394c new file mode 100644 index 00000000..852a62b8 Binary files /dev/null and b/.metadata/.plugins/org.eclipse.core.resources/.history/16/101f8387fb95001c145be16138a6394c differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.history/16/300ed6a2fb95001c145be16138a6394c b/.metadata/.plugins/org.eclipse.core.resources/.history/16/300ed6a2fb95001c145be16138a6394c new file mode 100644 index 00000000..9d3ab1a9 Binary files /dev/null and b/.metadata/.plugins/org.eclipse.core.resources/.history/16/300ed6a2fb95001c145be16138a6394c differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.history/16/303af8a9fb95001c145be16138a6394c b/.metadata/.plugins/org.eclipse.core.resources/.history/16/303af8a9fb95001c145be16138a6394c new file mode 100644 index 00000000..1b25e1ad Binary files /dev/null and b/.metadata/.plugins/org.eclipse.core.resources/.history/16/303af8a9fb95001c145be16138a6394c differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.history/16/403f04a2fb95001c145be16138a6394c b/.metadata/.plugins/org.eclipse.core.resources/.history/16/403f04a2fb95001c145be16138a6394c new file mode 100644 index 00000000..6dea1067 Binary files /dev/null and b/.metadata/.plugins/org.eclipse.core.resources/.history/16/403f04a2fb95001c145be16138a6394c differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.history/16/80023da2fb95001c145be16138a6394c b/.metadata/.plugins/org.eclipse.core.resources/.history/16/80023da2fb95001c145be16138a6394c new file mode 100644 index 00000000..4946ae28 Binary files /dev/null and b/.metadata/.plugins/org.eclipse.core.resources/.history/16/80023da2fb95001c145be16138a6394c differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.history/16/909dbf97fb95001c145be16138a6394c b/.metadata/.plugins/org.eclipse.core.resources/.history/16/909dbf97fb95001c145be16138a6394c new file mode 100644 index 00000000..e9c8a64a Binary files /dev/null and b/.metadata/.plugins/org.eclipse.core.resources/.history/16/909dbf97fb95001c145be16138a6394c differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.history/16/c0be31b1fb95001c145be16138a6394c b/.metadata/.plugins/org.eclipse.core.resources/.history/16/c0be31b1fb95001c145be16138a6394c new file mode 100644 index 00000000..778206da Binary files /dev/null and b/.metadata/.plugins/org.eclipse.core.resources/.history/16/c0be31b1fb95001c145be16138a6394c differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.history/16/f0fd34b2fb95001c145be16138a6394c b/.metadata/.plugins/org.eclipse.core.resources/.history/16/f0fd34b2fb95001c145be16138a6394c new file mode 100644 index 00000000..1a98d9ac Binary files /dev/null and b/.metadata/.plugins/org.eclipse.core.resources/.history/16/f0fd34b2fb95001c145be16138a6394c differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.history/17/0084ad8afb95001c145be16138a6394c b/.metadata/.plugins/org.eclipse.core.resources/.history/17/0084ad8afb95001c145be16138a6394c new file mode 100644 index 00000000..19521f35 Binary files /dev/null and b/.metadata/.plugins/org.eclipse.core.resources/.history/17/0084ad8afb95001c145be16138a6394c differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.history/17/00c67e90fb95001c145be16138a6394c b/.metadata/.plugins/org.eclipse.core.resources/.history/17/00c67e90fb95001c145be16138a6394c new file mode 100644 index 00000000..9a87b09b Binary files /dev/null and b/.metadata/.plugins/org.eclipse.core.resources/.history/17/00c67e90fb95001c145be16138a6394c differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.history/17/100036adfb95001c145be16138a6394c b/.metadata/.plugins/org.eclipse.core.resources/.history/17/100036adfb95001c145be16138a6394c new file mode 100644 index 00000000..8dd49cfd Binary files /dev/null and b/.metadata/.plugins/org.eclipse.core.resources/.history/17/100036adfb95001c145be16138a6394c differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.history/17/20093badfb95001c145be16138a6394c b/.metadata/.plugins/org.eclipse.core.resources/.history/17/20093badfb95001c145be16138a6394c new file mode 100644 index 00000000..d7db2a1d Binary files /dev/null and b/.metadata/.plugins/org.eclipse.core.resources/.history/17/20093badfb95001c145be16138a6394c differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.history/17/302449abfb95001c145be16138a6394c b/.metadata/.plugins/org.eclipse.core.resources/.history/17/302449abfb95001c145be16138a6394c new file mode 100644 index 00000000..0b1e6784 Binary files /dev/null and b/.metadata/.plugins/org.eclipse.core.resources/.history/17/302449abfb95001c145be16138a6394c differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.history/17/30816799fb95001c145be16138a6394c b/.metadata/.plugins/org.eclipse.core.resources/.history/17/30816799fb95001c145be16138a6394c new file mode 100644 index 00000000..ca7c65d1 Binary files /dev/null and b/.metadata/.plugins/org.eclipse.core.resources/.history/17/30816799fb95001c145be16138a6394c differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.history/17/506a50b1fb95001c145be16138a6394c b/.metadata/.plugins/org.eclipse.core.resources/.history/17/506a50b1fb95001c145be16138a6394c new file mode 100644 index 00000000..37054931 Binary files /dev/null and b/.metadata/.plugins/org.eclipse.core.resources/.history/17/506a50b1fb95001c145be16138a6394c differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.history/17/80163faffb95001c145be16138a6394c b/.metadata/.plugins/org.eclipse.core.resources/.history/17/80163faffb95001c145be16138a6394c new file mode 100644 index 00000000..c24495bb Binary files /dev/null and b/.metadata/.plugins/org.eclipse.core.resources/.history/17/80163faffb95001c145be16138a6394c differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.history/17/c07ed1a6fb95001c145be16138a6394c b/.metadata/.plugins/org.eclipse.core.resources/.history/17/c07ed1a6fb95001c145be16138a6394c new file mode 100644 index 00000000..4616f3d6 Binary files /dev/null and b/.metadata/.plugins/org.eclipse.core.resources/.history/17/c07ed1a6fb95001c145be16138a6394c differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.history/17/c0a218affb95001c145be16138a6394c b/.metadata/.plugins/org.eclipse.core.resources/.history/17/c0a218affb95001c145be16138a6394c new file mode 100644 index 00000000..ac67cbec Binary files /dev/null and b/.metadata/.plugins/org.eclipse.core.resources/.history/17/c0a218affb95001c145be16138a6394c differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.history/17/d035c98ff495001c1924f7bfa4761d81 b/.metadata/.plugins/org.eclipse.core.resources/.history/17/d035c98ff495001c1924f7bfa4761d81 new file mode 100644 index 00000000..e3395b54 Binary files /dev/null and b/.metadata/.plugins/org.eclipse.core.resources/.history/17/d035c98ff495001c1924f7bfa4761d81 differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.history/17/d0d4098bfb95001c145be16138a6394c b/.metadata/.plugins/org.eclipse.core.resources/.history/17/d0d4098bfb95001c145be16138a6394c new file mode 100644 index 00000000..5fedcb6f Binary files /dev/null and b/.metadata/.plugins/org.eclipse.core.resources/.history/17/d0d4098bfb95001c145be16138a6394c differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.history/17/e0b422affb95001c145be16138a6394c b/.metadata/.plugins/org.eclipse.core.resources/.history/17/e0b422affb95001c145be16138a6394c new file mode 100644 index 00000000..17032e53 Binary files /dev/null and b/.metadata/.plugins/org.eclipse.core.resources/.history/17/e0b422affb95001c145be16138a6394c differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.history/17/e0bd1392fb95001c145be16138a6394c b/.metadata/.plugins/org.eclipse.core.resources/.history/17/e0bd1392fb95001c145be16138a6394c new file mode 100644 index 00000000..68f07970 Binary files /dev/null and b/.metadata/.plugins/org.eclipse.core.resources/.history/17/e0bd1392fb95001c145be16138a6394c differ diff --git a/.metadata/.plugins/org.eclipse.core.resources/.history/18/106e12a9fb95001c145be16138a6394c b/.metadata/.plugins/org.eclipse.core.resources/.history/18/106e12a9fb95001c145be16138a6394c new file mode 100644 index 00000000..f0a6792e --- /dev/null +++ b/.metadata/.plugins/org.eclipse.core.resources/.history/18/106e12a9fb95001c145be16138a6394c @@ -0,0 +1,38 @@ + + + + New eGovDB Appender + + + + Create eGovDB Appender + + + + + + + + + + + + + + + + +