Skip to main content
summaryrefslogblamecommitdiffstats
blob: 1b2bfc7599e0d36878184853761a82120d23c1c2 (plain) (tree)
1
2
3
4
5
6
7
8
9
10









                                                                                 


























                                                                                                               
/*******************************************************************************
 * Copyright (c) 2010 Boeing.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     Boeing - initial API and implementation
 *******************************************************************************/
package org.eclipse.osee.framework.core.message;

public class DatastoreInitRequest {

   private final String tableDataSpace;
   private final String indexDataSpace;
   private final boolean useFileSpecifiedSchemas;

   public DatastoreInitRequest(String tableDataSpace, String indexDataSpace, boolean useFileSpecifiedSchemas) {
      super();
      this.tableDataSpace = tableDataSpace;
      this.indexDataSpace = indexDataSpace;
      this.useFileSpecifiedSchemas = useFileSpecifiedSchemas;
   }

   public String getTableDataSpace() {
      return tableDataSpace;
   }

   public String getIndexDataSpace() {
      return indexDataSpace;
   }

   public boolean isUseFileSpecifiedSchemas() {
      return useFileSpecifiedSchemas;
   }
}

Back to the top