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 cd7fe88 commit 54507ab
Show file tree
Hide file tree
Showing 9 changed files with 13 additions and 13 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
Binary file removed exceptionalsampleemps-initial/src/main/.DS_Store
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,11 @@ private ApiInfo apiEndPointsInfo()
return new ApiInfoBuilder().title("Sample Employees Project")
.description("A Project Used to Introduce Swagger Documentation")
.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-sampleemps/blob/master/LICENSE")
.licenseUrl("https://github.com/BloomInstituteOfTechnology/java-sampleemps/blob/master/LICENSE")
.version("1.0.0")
.build();
}
}
}
4 changes: 2 additions & 2 deletions exceptionalsampleemps/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ Using the provided seed data, the given endpoint will produce the stated output.
{
"title": "Resource Not Found",
"status": 404,
"detail": "Error from a Lambda School Application Employee 777 Not Found",
"detail": "Error from a BloomTech Application Employee 777 Not Found",
"timestamp": "2020-07-21 15:49:05",
"developerMessage": "com.lambdaschool.sampleemps.exceptions.ResourceNotFoundException",
"errors": []
Expand Down Expand Up @@ -1114,4 +1114,4 @@ STATUS 200 OK

</details>

[Sample Swagger Documentation](https://drive.google.com/file/d/1EijscrIhpv6lbnSbLXcaH7NeLFCEpI2l/view)
[Sample Swagger Documentation](https://drive.google.com/file/d/1EijscrIhpv6lbnSbLXcaH7NeLFCEpI2l/view)
Binary file removed exceptionalsampleemps/src/main/.DS_Store
Binary file not shown.
Binary file removed exceptionalsampleemps/src/main/java/.DS_Store
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,11 @@ private ApiInfo apiEndPointsInfo()
return new ApiInfoBuilder().title("Sample Employees Project")
.description("A Project Used to Introduce Swagger Documentation")
.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-sampleemps/blob/master/LICENSE")
.licenseUrl("https://github.com/BloomInstituteOfTechnology/java-sampleemps/blob/master/LICENSE")
.version("1.0.0")
.build();
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ public class ResourceNotFoundException
{
public ResourceNotFoundException(String message)
{
super("Error from a Lambda School Application " + message);
super("Error from a BloomTech Application " + message);
}
}
}

0 comments on commit 54507ab

Please sign in to comment.