/projects/sharepoint/source/java/com/google/enterprise/connector/sharepoint/wsclient/mock/MockListsWS.java

http://google-enterprise-connector-sharepoint.googlecode.com/ · Java · 101 lines · 68 code · 14 blank · 19 comment · 0 complexity · 35454e01c093ad5b77a01ebe1c5624a3 MD5 · raw file

  1. // Copyright 2011 Google Inc.
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // http://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. package com.google.enterprise.connector.sharepoint.wsclient.mock;
  15. import com.google.enterprise.connector.sharepoint.client.SharepointClientContext;
  16. import com.google.enterprise.connector.sharepoint.client.ListsUtil;
  17. import com.google.enterprise.connector.sharepoint.spiimpl.SPDocument;
  18. import com.google.enterprise.connector.sharepoint.spiimpl.SharepointException;
  19. import com.google.enterprise.connector.sharepoint.state.Folder;
  20. import com.google.enterprise.connector.sharepoint.state.ListState;
  21. import com.google.enterprise.connector.sharepoint.wsclient.client.ListsWS;
  22. import java.rmi.RemoteException;
  23. import java.util.logging.Logger;
  24. import java.util.Calendar;
  25. import java.util.Collections;
  26. import java.util.List;
  27. import java.util.Set;
  28. public class MockListsWS implements ListsWS {
  29. private static final Logger LOGGER = Logger.getLogger(MockListsWS.class.getName());
  30. protected final SharepointClientContext sharepointClientContext;
  31. protected String username;
  32. protected String password;
  33. /**
  34. * @param ctx The Sharepoint context is passed so that necessary
  35. * information can be used to create the instance of current class
  36. * web service endpoint is set to the default SharePoint URL stored
  37. * in SharePointClientContext.
  38. */
  39. public MockListsWS(final SharepointClientContext ctx) {
  40. sharepointClientContext = ctx;
  41. }
  42. @Override
  43. public String getUsername() {
  44. return username;
  45. }
  46. @Override
  47. public void setUsername(String username) {
  48. this.username = username;
  49. }
  50. @Override
  51. public void setPassword(final String password) {
  52. this.password = password;
  53. }
  54. @Override
  55. public void setTimeout(final int timeout) {
  56. }
  57. @Override
  58. public List<Folder> getSubFoldersRecursively(final ListState list,
  59. final Folder folder, final String lastID) {
  60. return Collections.emptyList();
  61. }
  62. @Override
  63. public List<SPDocument> getListItemChangesSinceToken(
  64. final ListState list, final String listName, final String viewName,
  65. final ListsUtil.SPQueryInfo queryInfo, final String token,
  66. final Set<String> allWebs, final Set<String> deletedIDs,
  67. final Set<String> restoredIDs, final Set<String> renamedIDs)
  68. throws SharepointException, RemoteException {
  69. return Collections.emptyList();
  70. }
  71. @Override
  72. public List<SPDocument> getListItems(ListState list, final String listName,
  73. final String viewName, final ListsUtil.SPQueryInfo queryInfo,
  74. final String webID, Set<String> allWebs) throws RemoteException {
  75. return Collections.emptyList();
  76. }
  77. @Override
  78. public List<SPDocument> getAttachments(final ListState baseList,
  79. final SPDocument listItem, List<String> knownAttachments) {
  80. return Collections.emptyList();
  81. }
  82. @Override
  83. public List<SPDocument> getListItemsUnderFolderHeirarchy(ListState list,
  84. Folder currentFolder) {
  85. return Collections.emptyList();
  86. }
  87. }