Skip to content

Commit

Permalink
BloomTech
Browse files Browse the repository at this point in the history
  • Loading branch information
Bob Lauer committed Nov 16, 2021
1 parent bc9c1ca commit a7a22d9
Show file tree
Hide file tree
Showing 12 changed files with 25 additions and 25 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2020 Lambda School, Inc.
Copyright (c) 2020 BloomTech, Inc.

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,11 +48,11 @@ private ApiInfo apiEndPointsInfo()
return new ApiInfoBuilder().title("User Model Example")
.description("User Model Example")
.contact(new Contact("John Mitchell",
"http://www.lambdaschool.com",
"john@lambdaschool.com"))
"http://www.bloomtech.com",
"john@bloomtech.com"))
.license("MIT")
.licenseUrl("https://github.com/LambdaSchool/java-usermodel/blob/master/LICENSE")
.licenseUrl("https://github.com/BloomInstituteOfTechnology/java-usermodel/blob/master/LICENSE")
.version("1.0.0")
.build();
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
* Also see:<br>
* application.properties.
*
* @author John Mitchell (john@lambdaschool.com) with Lambda School unless otherwise noted.
* @author John Mitchell (john@bloomtech.com) with BloomTech unless otherwise noted.
*/
package com.lambdaschool.shoppingcart.config;
package com.lambdaschool.shoppingcart.config;
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* Contains the access points, end points, that can be used by clients.
*
* @author John Mitchell (john@lambdaschool.com) with Lambda School unless otherwise noted.
* @author John Mitchell (john@bloomtech.com) with BloomTech unless otherwise noted.
*/
package com.lambdaschool.shoppingcart.controllers;
package com.lambdaschool.shoppingcart.controllers;
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ public class ResourceFoundException
{
public ResourceFoundException(String message)
{
super("Error from a Lambda School Application " + message);
super("Error from a BloomTech Application " + message);
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ public class ResourceNotFoundException
{
public ResourceNotFoundException(String message)
{
super("Error from a Lambda School Application " + message);
super("Error from a BloomTech Application " + message);
}
}
}
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* Contains the exceptions that are used in this application
*
* @author John Mitchell (john@lambdaschool.com) with Lambda School unless otherwise noted.
* @author John Mitchell (john@bloomtech.com) with BloomTech unless otherwise noted.
*/
package com.lambdaschool.shoppingcart.exceptions;
package com.lambdaschool.shoppingcart.exceptions;
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* Contains handlers, advisors, that are used throughout the application
*
* @author John Mitchell (john@lambdaschool.com) with Lambda School unless otherwise noted.
* @author John Mitchell (john@bloomtech.com) with BloomTech unless otherwise noted.
*/
package com.lambdaschool.shoppingcart.handlers;
package com.lambdaschool.shoppingcart.handlers;
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
* contains the layouts of all data used in the application.
* This included persistent data that is saved to a database, and non-persistent data used only during application execution.
*
* @author John Mitchell (john@lambdaschool.com) with Lambda School unless otherwise noted.
* @author John Mitchell (john@bloomtech.com) with BloomTech unless otherwise noted.
*/
package com.lambdaschool.shoppingcart.models;
package com.lambdaschool.shoppingcart.models;
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
* Main package for this application. All other packages will be sub packages of this package.
* Contains the starting method for the method and any classes pertain to the overall application.
*
* @author John Mitchell (john@lambdaschool.com) with Lambda School unless otherwise noted.
* @author John Mitchell (john@bloomtech.com) with BloomTech unless otherwise noted.
*/
package com.lambdaschool.shoppingcart;
package com.lambdaschool.shoppingcart;
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
* Contains the links between the database and the application.
* Typically contains one class for each persistent, database, model.
*
* @author John Mitchell (john@lambdaschool.com) with Lambda School unless otherwise noted.
* @author John Mitchell (john@bloomtech.com) with BloomTech unless otherwise noted.
*/
package com.lambdaschool.shoppingcart.repository;
package com.lambdaschool.shoppingcart.repository;
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
* Contains the contract stating what each client can do with the data in the application.
* The majority of the work of the application resides in this package.
*
* @author John Mitchell (john@lambdaschool.com) with Lambda School unless otherwise noted.
* @author John Mitchell (john@bloomtech.com) with BloomTech unless otherwise noted.
*/
package com.lambdaschool.shoppingcart.services;
package com.lambdaschool.shoppingcart.services;

0 comments on commit a7a22d9

Please sign in to comment.