Package com.google.enterprise.connector.filenet4.mockjavawrap

Source Code of com.google.enterprise.connector.filenet4.mockjavawrap.MockObjectStore

// Copyright 2014 Google Inc. All Rights Reserved.
//
// 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.filenet4.mockjavawrap;

import com.google.enterprise.connector.filenet4.filejavawrap.FnId;
import com.google.enterprise.connector.filenet4.filewrap.IBaseObject;
import com.google.enterprise.connector.filenet4.filewrap.IId;
import com.google.enterprise.connector.filenet4.filewrap.IObjectStore;
import com.google.enterprise.connector.spi.RepositoryDocumentException;
import com.google.enterprise.connector.spi.RepositoryException;
import com.google.enterprise.connector.spi.RepositoryLoginException;

import com.filenet.api.admin.PropertyDefinition;
import com.filenet.api.constants.ClassNames;
import com.filenet.api.constants.DatabaseType;
import com.filenet.api.property.PropertyFilter;
import com.filenet.api.util.Id;

import java.util.Iterator;
import java.util.Map;

public class MockObjectStore implements IObjectStore {
  private final Map<IId, IBaseObject> objects;
  private final String name;
  private final DatabaseType dbType;

  public MockObjectStore(String name, DatabaseType databaseType,
      Map<IId, IBaseObject> objects) {
    this.name = name;
    this.objects = objects;
    this.dbType = databaseType;
  }

  @Override
  public IBaseObject getObject(String type, String id)
      throws RepositoryDocumentException {
    return getObject(type, new FnId(id));
  }

  @Override
  public IBaseObject getObject(String type, IId id)
      throws RepositoryDocumentException {
    return objects.get(id);
  }

  @Override
  public IBaseObject fetchObject(String type, IId id, PropertyFilter filter)
          throws RepositoryDocumentException {
    IBaseObject obj = objects.get(id);
    if (ClassNames.DOCUMENT.equals(type)) {
      return new MockDocument(obj);
    } else if (ClassNames.VERSION_SERIES.equals(type)) {
      return new MockVersionSeries(obj);
    } else {
      return obj;
    }
  }

  @Override
  public String get_Name() throws RepositoryException {
    return this.name;
  }

  @Override
  public Iterator<PropertyDefinition> getPropertyDefinitions(Id objectId,
      PropertyFilter filter) throws RepositoryException {
    return null;
  }

  @Override
  public void refreshSUserContext() throws RepositoryLoginException {
    // Not implemented
  }

  @Override
  public DatabaseType get_DatabaseType() {
    return this.dbType;
  }

  @Override
  public String getSUserLogin() {
    return null;
  }

  @Override
  public String getSUserPassword() {
    return null;
  }

  public Map<IId, IBaseObject> getObjects() {
    return objects;
  }
}
TOP

Related Classes of com.google.enterprise.connector.filenet4.mockjavawrap.MockObjectStore

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.