Skip to main content
summaryrefslogtreecommitdiffstats
blob: da8397c2f9f410b831bbd974f820f0ddb25b8252 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/*******************************************************************************
 * Copyright (c) 2004, 2007 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.define.blam.operation;


/**
 * @author Jeff C. Phillips
 */
public class CheckValidArtifactTypes extends CheckValidType {
   private static final String CHECK_SQL =
         "SELECT t1.*, t3.gamma_id, t4.* FROM osee_artifact t1, osee_artifact_version t2, osee_txs t3, osee_tx_details t4 WHERE t1.art_id = t2.art_id AND t2.gamma_id = t3.gamma_id AND t3.transaction_id = t4.transaction_id AND NOT EXISTS (SELECT 'x' FROM osee_artifact_type t5, osee_txs t6, osee_tx_details t7 WHERE t5.gamma_id = t6.gamma_id AND t6.transaction_id = t7.transaction_id AND t4.branch_id = t7.branch_id AND t1.art_type_id = t5.art_type_id)";

   /**
    * @param sql
    * @param headers
    * @param colNames
    * @param logger
    */
   public CheckValidArtifactTypes() {
      super(CHECK_SQL, new String[] {"art_id", "gamma_id", "transaction_id", "branch_id"}, new String[] {"Art ID",
            "Gamma ID", "Transaction ID", "Branch ID"});
   }
}

Back to the top