Package de.metalcon.server.tomcat.NSSP.delete.follow

Examples of de.metalcon.server.tomcat.NSSP.delete.follow.DeleteFollowResponse


        }
        break;

      // delete a follow edge
      case FOLLOW:
        final DeleteFollowResponse deleteFollowResponse = new DeleteFollowResponse();
        final DeleteFollowRequest deleteFollowRequest = DeleteFollowRequest
            .checkRequest(request, deleteRequest,
                deleteFollowResponse);
        deleteResponse = deleteFollowResponse;
View Full Code Here


          .thenReturn(userId);
      when(
          this.request
              .getParameter(ProtocolConstants.Parameters.Delete.Follow.FOLLOWED_IDENTIFIER))
          .thenReturn(followedId);
      final DeleteFollowResponse deleteFollowResponse = new DeleteFollowResponse();
      this.deleteFollowRequest = DeleteFollowRequest.checkRequest(
          this.request, deleteRequest, deleteFollowResponse);
      this.jsonResponse = extractJson(deleteFollowResponse);
    }
  }
View Full Code Here

TOP

Related Classes of de.metalcon.server.tomcat.NSSP.delete.follow.DeleteFollowResponse

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.