Skip to content

Commit 210b7f7

Browse files
phasenraum2010phasenraum2010
authored andcommitted
changed propeterties
1 parent 5325373 commit 210b7f7

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

63 files changed

+2229
-49
lines changed

src/main/java/org/woehlke/learn/learnneo4j/configuration/properties/MyServerProperties.java

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,12 @@ public void setPath(String path) {
3434
this.path = path;
3535
}
3636

37+
@Override
38+
public String toString() {
39+
return "Error{" +
40+
"path='" + path + '\'' +
41+
'}';
42+
}
3743
}
3844

3945
@Validated
@@ -60,6 +66,14 @@ public Integer getMinResponseSize() {
6066
public void setMinResponseSize(Integer minResponseSize) {
6167
this.minResponseSize = minResponseSize;
6268
}
69+
70+
@Override
71+
public String toString() {
72+
return "Compression{" +
73+
"enabled=" + enabled +
74+
", minResponseSize=" + minResponseSize +
75+
'}';
76+
}
6377
}
6478

6579
public Error getError() {

src/main/java/org/woehlke/learn/learnneo4j/configuration/properties/MySpringBootProperties.java

Lines changed: 40 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -251,6 +251,39 @@ public String toString() {
251251
'}';
252252
}
253253
}
254+
255+
public Neo4j getNeo4j() {
256+
return neo4j;
257+
}
258+
259+
public void setNeo4j(Neo4j neo4j) {
260+
this.neo4j = neo4j;
261+
}
262+
263+
public Jpa getJpa() {
264+
return jpa;
265+
}
266+
267+
public void setJpa(Jpa jpa) {
268+
this.jpa = jpa;
269+
}
270+
271+
public Web getWeb() {
272+
return web;
273+
}
274+
275+
public void setWeb(Web web) {
276+
this.web = web;
277+
}
278+
279+
@Override
280+
public String toString() {
281+
return "Data{" +
282+
"neo4j=" + neo4j +
283+
", jpa=" + jpa +
284+
", web=" + web +
285+
'}';
286+
}
254287
}
255288

256289
@Validated
@@ -390,6 +423,13 @@ public String getDdlAuto() {
390423
public void setDdlAuto(String ddlAuto) {
391424
this.ddlAuto = ddlAuto;
392425
}
426+
427+
@Override
428+
public String toString() {
429+
return "Hibernate{" +
430+
"ddlAuto='" + ddlAuto + '\'' +
431+
'}';
432+
}
393433
}
394434

395435
@Validated
@@ -658,7 +698,6 @@ public void setProfiles(String profiles) {
658698
this.profiles = profiles;
659699
}
660700

661-
662701
public Data getData() {
663702
return data;
664703
}

src/main/resources/static/css/my.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* my own CSS. (c) 2017 Thomas Woehlke */
1+
/* my own CSS. (c) 2018 Thomas Woehlke */
22

33
@media all {
44

src/main/resources/static/css/tw.css

Lines changed: 0 additions & 1 deletion
This file was deleted.
17 KB
24.3 KB
2.74 KB
3.89 KB
6.68 KB
9.78 KB

0 commit comments

Comments
 (0)