Skip to content

Commit b17cf79

Browse files
committed
release prep
1 parent 897312d commit b17cf79

File tree

4 files changed

+35
-9
lines changed

4 files changed

+35
-9
lines changed

adapter/adapter.rest/adapter.rest.v2/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@
9494

9595
<apiSource>
9696
<apiVersion>v2</apiVersion>
97-
<basePath>http://test-ll.know-center.tugraz.at/layers.test</basePath>
97+
<basePath>http://localhost:8080/sss.adapter.rest.v2</basePath>
9898
<!--
9999
localhost:8080/sss.adapter.rest.v2
100100
test-ll.know-center.tugraz.at/ltb.v2
@@ -111,7 +111,7 @@
111111
<licenseUrl>${project.licenseURI}</licenseUrl>
112112
</apiInfo>
113113

114-
<swaggerUIDocBasePath>http://test-ll.know-center.tugraz.at/layers.test/api-docs</swaggerUIDocBasePath>
114+
<swaggerUIDocBasePath>http://localhost:8080/sss.adapter.rest.v2/api-docs</swaggerUIDocBasePath>
115115
<!--
116116
localhost:8080/sss.adapter.rest.v2/api-docs
117117
test-ll.know-center.tugraz.at/ltb.v2/api-docs

adapter/adapter.rest/adapter.rest.v2/src/main/java/at/tugraz/sss/adapter/rest/v2/SSRestMainV2.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ public class SSRestMainV2 extends Application {
5555

5656
public SSRestMainV2() throws Exception{
5757

58-
SSAdapterRestConf.instSet (SSFileU.dirCatalinaBase() + SSVocConf.dirNameConf + "layers.test.yaml");
58+
SSAdapterRestConf.instSet (SSFileU.dirCatalinaBase() + SSVocConf.dirNameConf + "sss.adapter.rest.v2.conf.yaml");
5959

6060
conf = SSAdapterRestConf.instGet();
6161

adapter/adapter.rest/adapter.rest.v2/src/main/webapp/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
<script type="text/javascript">
2626
$(function () {
2727
window.swaggerUi = new SwaggerUi({
28-
url: "http://test-ll.know-center.tugraz.at/layers.test/api-docs",
28+
url: "http://localhost:8080/sss.adapter.rest.v2/api-docs",
2929
//test-ll.know-center.tugraz.at/ltb-v2/api-docs
3030
//localhost:8080/sss.adapter.rest.v2/api-docs
3131
//test-ll.know-center.tugraz.at/ld

sss/src/main/resources/conf/sss.schema.sql

Lines changed: 31 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
CREATE DATABASE IF NOT EXISTS `SSS_MYSQL_SCHEME` /*!40100 DEFAULT CHARACTER SET utf8 */;
22
USE `SSS_MYSQL_SCHEME`;
3-
-- MySQL dump 10.13 Distrib 5.6.13, for Win32 (x86)
3+
4+
-- MySQL dump 10.13 Distrib 5.6.24, for Win64 (x86_64)
45
--
56
-- Host: localhost Database: sss
67
-- ------------------------------------------------------
7-
-- Server version 5.6.10
8+
-- Server version 5.6.26-log
89

910
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
1011
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
@@ -932,8 +933,8 @@ CREATE TABLE `evernotenote` (
932933
PRIMARY KEY (`noteId`),
933934
KEY `noteIdFKevernotenotes_idx` (`noteId`),
934935
KEY `notebookIdFKevernotenote` (`notebookId`),
935-
CONSTRAINT `notebookIdFKevernotenote` FOREIGN KEY (`notebookId`) REFERENCES `entity` (`id`) ON DELETE CASCADE ON UPDATE NO ACTION,
936-
CONSTRAINT `noteIdFKevernotenote` FOREIGN KEY (`noteId`) REFERENCES `entity` (`id`) ON DELETE CASCADE ON UPDATE NO ACTION
936+
CONSTRAINT `noteIdFKevernotenote` FOREIGN KEY (`noteId`) REFERENCES `entity` (`id`) ON DELETE CASCADE ON UPDATE NO ACTION,
937+
CONSTRAINT `notebookIdFKevernotenote` FOREIGN KEY (`notebookId`) REFERENCES `entity` (`id`) ON DELETE CASCADE ON UPDATE NO ACTION
937938
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
938939
/*!40101 SET character_set_client = @saved_cs_client */;
939940

@@ -1512,6 +1513,31 @@ LOCK TABLES `location` WRITE;
15121513
/*!40000 ALTER TABLE `location` ENABLE KEYS */;
15131514
UNLOCK TABLES;
15141515

1516+
--
1517+
-- Table structure for table `mail`
1518+
--
1519+
1520+
DROP TABLE IF EXISTS `mail`;
1521+
/*!40101 SET @saved_cs_client = @@character_set_client */;
1522+
/*!40101 SET character_set_client = utf8 */;
1523+
CREATE TABLE `mail` (
1524+
`mailId` varchar(255) NOT NULL,
1525+
`receiverEmail` varchar(255) NOT NULL,
1526+
`hash` varchar(255) NOT NULL,
1527+
PRIMARY KEY (`mailId`),
1528+
CONSTRAINT `mailIdFKmail` FOREIGN KEY (`mailId`) REFERENCES `entity` (`id`) ON DELETE CASCADE ON UPDATE NO ACTION
1529+
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
1530+
/*!40101 SET character_set_client = @saved_cs_client */;
1531+
1532+
--
1533+
-- Dumping data for table `mail`
1534+
--
1535+
1536+
LOCK TABLES `mail` WRITE;
1537+
/*!40000 ALTER TABLE `mail` DISABLE KEYS */;
1538+
/*!40000 ALTER TABLE `mail` ENABLE KEYS */;
1539+
UNLOCK TABLES;
1540+
15151541
--
15161542
-- Table structure for table `message`
15171543
--
@@ -1815,4 +1841,4 @@ UNLOCK TABLES;
18151841
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
18161842
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
18171843

1818-
-- Dump completed on 2015-08-25 15:59:28
1844+
-- Dump completed on 2015-09-25 12:22:22

0 commit comments

Comments
 (0)