Skip to content

Commit 38bff9d

Browse files
author
Bob Lauer
committed
BloomTech
1 parent 2d42ab9 commit 38bff9d

File tree

14 files changed

+30
-30
lines changed

14 files changed

+30
-30
lines changed

LESSONPLAN.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@ Please take a moment to reflect on what you have previously learned and hope to
66

77
#### Daily Resources
88

9-
* [Guided Project Starter](https://github.com/LambdaSchool/java-usermodel/tree/master/usermodel_initial)
9+
* [Guided Project Starter](https://github.com/BloomInstituteOfTechnology/java-usermodel/tree/master/usermodel_initial)
1010
* [Slido](https://app.sli.do/event/XXXXXXXX)
1111
* [Zoom like](https://lambdaschool.zoom.us/j/#########)
1212

1313
#### Slack Message
1414

1515
@channel
16-
For the Java class today, I will start from the application found in [https://github.com/LambdaSchool/java-usermodel/tree/master/usermodel_initial](https://github.com/LambdaSchool/java-usermodel/tree/master/usermodel_initial). So, you will need copy of this in order to follow along!
16+
For the Java class today, I will start from the application found in [https://github.com/BloomInstituteOfTechnology/java-usermodel/tree/master/usermodel_initial](https://github.com/BloomInstituteOfTechnology/java-usermodel/tree/master/usermodel_initial). So, you will need copy of this in order to follow along!
1717
The Java Class will be starting in 3 minutes at (https://lambdaschool.zoom.us/j/#########)
1818
Please post questions to the Slido link at (https://app.sli.do/event/XXXXXXXX)
1919

usermodel/src/main/java/com/lambdaschool/usermodel/config/Swagger2Config.java

+4-4
Original file line numberDiff line numberDiff line change
@@ -48,11 +48,11 @@ private ApiInfo apiEndPointsInfo()
4848
return new ApiInfoBuilder().title("User Model Example")
4949
.description("User Model Example")
5050
.contact(new Contact("John Mitchell",
51-
"http://www.lambdaschool.com",
52-
"john@lambdaschool.com"))
51+
"http://www.bloomtech.com",
52+
"john@bloomtech.com"))
5353
.license("MIT")
54-
.licenseUrl("https://github.com/LambdaSchool/java-usermodel/blob/master/LICENSE")
54+
.licenseUrl("https://github.com/BloomInstituteOfTechnology/java-usermodel/blob/master/LICENSE")
5555
.version("1.0.0")
5656
.build();
5757
}
58-
}
58+
}

usermodel/src/main/java/com/lambdaschool/usermodel/config/package-info.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44
* Also see:<br>
55
* application.properties.
66
*
7-
* @author John Mitchell (john@lambdaschool.com) with Lambda School unless otherwise noted.
7+
* @author John Mitchell (john@bloomtech.com) with BloomTech unless otherwise noted.
88
*/
9-
package com.lambdaschool.usermodel.config;
9+
package com.lambdaschool.usermodel.config;
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* Contains the access points, end points, that can be used by clients.
33
*
4-
* @author John Mitchell (john@lambdaschool.com) with Lambda School unless otherwise noted.
4+
* @author John Mitchell (john@bloomtech.com) with BloomTech unless otherwise noted.
55
*/
6-
package com.lambdaschool.usermodel.controllers;
6+
package com.lambdaschool.usermodel.controllers;

usermodel/src/main/java/com/lambdaschool/usermodel/models/package-info.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
* contains the layouts of all data used in the application.
33
* This included persistent data that is saved to a database, and non-persistent data used only during application execution.
44
*
5-
* @author John Mitchell (john@lambdaschool.com) with Lambda School unless otherwise noted.
5+
* @author John Mitchell (john@bloomtech.com) with BloomTech unless otherwise noted.
66
*/
7-
package com.lambdaschool.usermodel.models;
7+
package com.lambdaschool.usermodel.models;

usermodel/src/main/java/com/lambdaschool/usermodel/package-info.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
* Main package for this application. All other packages will be sub packages of this package.
33
* Contains the starting method for the method and any classes pertain to the overall application.
44
*
5-
* @author John Mitchell (john@lambdaschool.com) with Lambda School unless otherwise noted.
5+
* @author John Mitchell (john@bloomtech.com) with BloomTech unless otherwise noted.
66
*/
7-
package com.lambdaschool.usermodel;
7+
package com.lambdaschool.usermodel;

usermodel/src/main/java/com/lambdaschool/usermodel/repository/package-info.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
* Contains the links between the database and the application.
33
* Typically contains one class for each persistent, database, model.
44
*
5-
* @author John Mitchell (john@lambdaschool.com) with Lambda School unless otherwise noted.
5+
* @author John Mitchell (john@bloomtech.com) with BloomTech unless otherwise noted.
66
*/
7-
package com.lambdaschool.usermodel.repository;
7+
package com.lambdaschool.usermodel.repository;

usermodel/src/main/java/com/lambdaschool/usermodel/services/package-info.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
* Contains the contract stating what each client can do with the data in the application.
44
* The majority of the work of the application resides in this package.
55
*
6-
* @author John Mitchell (john@lambdaschool.com) with Lambda School unless otherwise noted.
6+
* @author John Mitchell (john@bloomtech.com) with BloomTech unless otherwise noted.
77
*/
8-
package com.lambdaschool.usermodel.services;
8+
package com.lambdaschool.usermodel.services;

usermodel_initial/src/main/java/com/lambdaschool/usermodel/config/package-info.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44
* Also see:<br>
55
* application.properties.
66
*
7-
* @author John Mitchell (john@lambdaschool.com) with Lambda School unless otherwise noted.
7+
* @author John Mitchell (john@bloomtech.com) with BloomTech unless otherwise noted.
88
*/
9-
package com.lambdaschool.usermodel.config;
9+
package com.lambdaschool.usermodel.config;
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* Contains the access points, end points, that can be used by clients.
33
*
4-
* @author John Mitchell (john@lambdaschool.com) with Lambda School unless otherwise noted.
4+
* @author John Mitchell (john@bloomtech.com) with BloomTech unless otherwise noted.
55
*/
6-
package com.lambdaschool.usermodel.controllers;
6+
package com.lambdaschool.usermodel.controllers;

usermodel_initial/src/main/java/com/lambdaschool/usermodel/models/package-info.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
* contains the layouts of all data used in the application.
33
* This included persistent data that is saved to a database, and non-persistent data used only during application execution.
44
*
5-
* @author John Mitchell (john@lambdaschool.com) with Lambda School unless otherwise noted.
5+
* @author John Mitchell (john@bloomtech.com) with BloomTech unless otherwise noted.
66
*/
7-
package com.lambdaschool.usermodel.models;
7+
package com.lambdaschool.usermodel.models;

usermodel_initial/src/main/java/com/lambdaschool/usermodel/package-info.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
* Main package for this application. All other packages will be sub packages of this package.
33
* Contains the starting method for the method and any classes pertain to the overall application.
44
*
5-
* @author John Mitchell (john@lambdaschool.com) with Lambda School unless otherwise noted.
5+
* @author John Mitchell (john@bloomtech.com) with BloomTech unless otherwise noted.
66
*/
7-
package com.lambdaschool.usermodel;
7+
package com.lambdaschool.usermodel;

usermodel_initial/src/main/java/com/lambdaschool/usermodel/repository/package-info.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
* Contains the links between the database and the application.
33
* Typically contains one class for each persistent, database, model.
44
*
5-
* @author John Mitchell (john@lambdaschool.com) with Lambda School unless otherwise noted.
5+
* @author John Mitchell (john@bloomtech.com) with BloomTech unless otherwise noted.
66
*/
7-
package com.lambdaschool.usermodel.repository;
7+
package com.lambdaschool.usermodel.repository;

usermodel_initial/src/main/java/com/lambdaschool/usermodel/services/package-info.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
* Contains the contract stating what each client can do with the data in the application.
44
* The majority of the work of the application resides in this package.
55
*
6-
* @author John Mitchell (john@lambdaschool.com) with Lambda School unless otherwise noted.
6+
* @author John Mitchell (john@bloomtech.com) with BloomTech unless otherwise noted.
77
*/
8-
package com.lambdaschool.usermodel.services;
8+
package com.lambdaschool.usermodel.services;

0 commit comments

Comments
 (0)