Skip to content

Commit

Permalink
Updated scoping
Browse files Browse the repository at this point in the history
  • Loading branch information
zack-rma committed Jan 29, 2025
1 parent bae49f7 commit 56096c3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import javax.servlet.http.HttpServletResponse;

public class DatabaseItemNotFoundException extends WebAppException
public final class DatabaseItemNotFoundException extends WebAppException
{
/** detailed error msg */
private String errMessage = "";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import javax.servlet.http.HttpServletResponse;

public class MissingParameterException extends WebAppException
public final class MissingParameterException extends WebAppException
{
/** detailed error msg */
private String errMessage = "";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
* Resources for editing, monitoring, stopping, and starting processes.
*/
@Path("/")
public class AppResources extends OpenDcsResource
public final class AppResources extends OpenDcsResource
{
@Context private HttpServletRequest request;
@Context private HttpHeaders httpHeaders;
Expand Down

0 comments on commit 56096c3

Please sign in to comment.