This is an automated email from the ASF dual-hosted git repository.

lewismc pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-sdap-mudrod.git


The following commit(s) were added to refs/heads/master by this push:
     new c621ff4  SDAP-181 Method visibility is fixed. (#41)
c621ff4 is described below

commit c621ff4aab132b913dfd4c505ef516134828fbe6
Author: Furkan KAMACI <[email protected]>
AuthorDate: Wed Feb 13 22:35:11 2019 +0300

    SDAP-181 Method visibility is fixed. (#41)
---
 .../org/apache/sdap/mudrod/services/search/SessionDetailResource.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/service/src/main/java/org/apache/sdap/mudrod/services/search/SessionDetailResource.java
 
b/service/src/main/java/org/apache/sdap/mudrod/services/search/SessionDetailResource.java
index 074378d..9990c7a 100644
--- 
a/service/src/main/java/org/apache/sdap/mudrod/services/search/SessionDetailResource.java
+++ 
b/service/src/main/java/org/apache/sdap/mudrod/services/search/SessionDetailResource.java
@@ -57,7 +57,7 @@ public class SessionDetailResource {
   @Path("{CleanupType}-{SessionID}")
   @Produces(MediaType.APPLICATION_JSON)
   @Consumes("text/plain")
-  protected Response searchSessionDetail(@PathParam("CleanupType") String 
cleanupType, @PathParam("SessionID") String sessionID) {
+  public Response searchSessionDetail(@PathParam("CleanupType") String 
cleanupType, @PathParam("SessionID") String sessionID) {
 
     JsonObject json = new JsonObject();
     if (sessionID != null) {

Reply via email to