add ignores

This commit is contained in:
Ignacio Manzano 2009-06-19 01:27:48 +00:00
parent f1d87ce1d9
commit 5042b4c5a8

View File

@ -22,7 +22,6 @@ package com.wisemapping.ws;
import org.springframework.ws.server.endpoint.annotation.Endpoint; import org.springframework.ws.server.endpoint.annotation.Endpoint;
import org.springframework.ws.server.endpoint.annotation.PayloadRoot; import org.springframework.ws.server.endpoint.annotation.PayloadRoot;
import org.apache.log4j.Logger; import org.apache.log4j.Logger;
import com.sun.istack.internal.NotNull;
import com.wisemapping.service.MindmapService; import com.wisemapping.service.MindmapService;
import com.wisemapping.service.UserService; import com.wisemapping.service.UserService;
import com.wisemapping.model.MindMap; import com.wisemapping.model.MindMap;
@ -54,7 +53,7 @@ public class WiseWsEndpoint {
} }
@PayloadRoot(localPart = "loadMindmapRequest", namespace = "http://www.wisemapping.org/ws") @PayloadRoot(localPart = "loadMindmapRequest", namespace = "http://www.wisemapping.org/ws")
public LoadMindmapResponse loadMindmap(final @NotNull LoadMindmapRequest request) throws Throwable { public LoadMindmapResponse loadMindmap(final LoadMindmapRequest request) throws Throwable {
logger.debug("Invoking loadMindmap"); logger.debug("Invoking loadMindmap");
final LoadMindmapResponse result = new LoadMindmapResponse(); final LoadMindmapResponse result = new LoadMindmapResponse();
@ -89,7 +88,7 @@ public class WiseWsEndpoint {
} }
@PayloadRoot(localPart = "addMindmapRequest", namespace = "http://www.wisemapping.org/ws") @PayloadRoot(localPart = "addMindmapRequest", namespace = "http://www.wisemapping.org/ws")
public AddMindmapResponse createMindmap(final @NotNull AddMindmapRequest request) throws Throwable { public AddMindmapResponse createMindmap(final AddMindmapRequest request) throws Throwable {
logger.debug("Invoking createMindmap"); logger.debug("Invoking createMindmap");
final AddMindmapResponse response = new AddMindmapResponse(); final AddMindmapResponse response = new AddMindmapResponse();
@ -158,4 +157,4 @@ public class WiseWsEndpoint {
public void setMindmapService(MindmapService mindmapService) { public void setMindmapService(MindmapService mindmapService) {
this.mindmapService = mindmapService; this.mindmapService = mindmapService;
} }
} }