Package com.google.enterprise.connector.notes.client.mock

Source Code of com.google.enterprise.connector.notes.client.mock.NotesACLMock

// Copyright 2011 Google Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//      http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

package com.google.enterprise.connector.notes.client.mock;

import com.google.enterprise.connector.notes.client.NotesACL;
import com.google.enterprise.connector.notes.client.NotesACLEntry;
import com.google.enterprise.connector.spi.RepositoryException;

import java.util.ArrayList;
import java.util.List;
import java.util.Vector;
import java.util.logging.Logger;

public class NotesACLMock extends NotesBaseMock implements NotesACL {
  private static final String CLASS_NAME = NotesACLMock.class.getName();

  /** The logger for this class. */
  private static final Logger LOGGER =
      Logger.getLogger(CLASS_NAME);

  private final List<NotesACLEntryMock> entries =
      new ArrayList<NotesACLEntryMock>();
  private int index = 0;

  public NotesACLMock() {
  }

  public void addAclEntry(NotesACLEntryMock entry) {
    entries.add(entry);
  }

  /** {@inheritDoc} */
  @Override
  public NotesACLEntry getFirstEntry() throws RepositoryException {
    LOGGER.entering(CLASS_NAME, "getFirstEntry");
    if (entries.size() == 0) {
      return null;
    }
    index = 1;
    return entries.get(0);
  }

  /** {@inheritDoc} */
  @Override
  public NotesACLEntry getNextEntry() throws RepositoryException {
    LOGGER.entering(CLASS_NAME, "getNextEntry");
    if (index < entries.size()) {
      NotesACLEntry entry = entries.get(index);
      ++index;
      return entry;
    }
    return null;
  }

  /** {@inheritDoc} */
  @Override
  public NotesACLEntry getNextEntry(NotesACLEntry previousEntry)
      throws RepositoryException {
    LOGGER.entering(CLASS_NAME, "getNextEntry(prev)");

    int previousEntryPosition = entries.indexOf(previousEntry);
    if (previousEntryPosition == -1) {
      return null;
    }
    if (previousEntryPosition == entries.size() - 1) {
      return null;
    }
    index = previousEntryPosition + 1;
    return entries.get(index);
  }

  /** {@inheritDoc} */
  @Override
  public Vector getRoles() throws RepositoryException {
    LOGGER.entering(CLASS_NAME, "getRoles)");
    return new Vector();
  }
}
TOP

Related Classes of com.google.enterprise.connector.notes.client.mock.NotesACLMock

TOP
Copyright © 2018 www.massapi.com. 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.