Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.orcs.rest.client/src/org/eclipse/osee/orcs/rest/client/QueryBuilder.java')
-rw-r--r--plugins/org.eclipse.osee.orcs.rest.client/src/org/eclipse/osee/orcs/rest/client/QueryBuilder.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/plugins/org.eclipse.osee.orcs.rest.client/src/org/eclipse/osee/orcs/rest/client/QueryBuilder.java b/plugins/org.eclipse.osee.orcs.rest.client/src/org/eclipse/osee/orcs/rest/client/QueryBuilder.java
index 7ca2d8a3950..f3894a6d4dd 100644
--- a/plugins/org.eclipse.osee.orcs.rest.client/src/org/eclipse/osee/orcs/rest/client/QueryBuilder.java
+++ b/plugins/org.eclipse.osee.orcs.rest.client/src/org/eclipse/osee/orcs/rest/client/QueryBuilder.java
@@ -17,7 +17,7 @@ import org.eclipse.osee.framework.core.data.ArtifactToken;
import org.eclipse.osee.framework.core.data.IArtifactType;
import org.eclipse.osee.framework.core.data.IAttributeType;
import org.eclipse.osee.framework.core.data.IRelationType;
-import org.eclipse.osee.framework.core.data.IRelationTypeSide;
+import org.eclipse.osee.framework.core.data.RelationTypeSide;
import org.eclipse.osee.framework.core.data.TokenFactory;
import org.eclipse.osee.framework.core.data.TransactionId;
import org.eclipse.osee.framework.core.enums.QueryOption;
@@ -132,7 +132,7 @@ public interface QueryBuilder {
*
* @param relationTypeSide the type to start following the link from
*/
- QueryBuilder andExists(IRelationTypeSide relationTypeSide) throws OseeCoreException;
+ QueryBuilder andExists(RelationTypeSide relationTypeSide) throws OseeCoreException;
/**
* Search criteria that checks for non-existence of a relation type
@@ -146,7 +146,7 @@ public interface QueryBuilder {
*
* @param relationTypeSide the type to check for non-existence
*/
- QueryBuilder andNotExists(IRelationTypeSide relationTypeSide) throws OseeCoreException;
+ QueryBuilder andNotExists(RelationTypeSide relationTypeSide) throws OseeCoreException;
/**
* Artifact name equals value
@@ -178,14 +178,14 @@ public interface QueryBuilder {
*
* @param relationTypeSide the type-side to search on
*/
- QueryBuilder andRelatedTo(IRelationTypeSide relationTypeSide, ArtifactId... artifacts) throws OseeCoreException;
+ QueryBuilder andRelatedTo(RelationTypeSide relationTypeSide, ArtifactId... artifacts) throws OseeCoreException;
/**
* Search for related artifacts
*
* @param relationTypeSide the type-side to search on
*/
- QueryBuilder andRelatedTo(IRelationTypeSide relationTypeSide, Collection<ArtifactId> artifactIds) throws OseeCoreException;
+ QueryBuilder andRelatedTo(RelationTypeSide relationTypeSide, Collection<ArtifactId> artifactIds) throws OseeCoreException;
/**
* Executes query

Back to the top