Examples of PurgeSnapshotQuery


Examples of org.sonar.core.purge.PurgeSnapshotQuery

  private BaseMatcher<PurgeSnapshotQuery> newRootSnapshotQuery() {
    return new ArgumentMatcher<PurgeSnapshotQuery>() {
      @Override
      public boolean matches(Object o) {
        PurgeSnapshotQuery query = (PurgeSnapshotQuery) o;
        return ObjectUtils.equals(query.getRootSnapshotId(), 999L);
      }
    };
  }
View Full Code Here

Examples of org.sonar.core.purge.PurgeSnapshotQuery

  private BaseMatcher<PurgeSnapshotQuery> newSnapshotIdQuery() {
    return new ArgumentMatcher<PurgeSnapshotQuery>() {
      @Override
      public boolean matches(Object o) {
        PurgeSnapshotQuery query = (PurgeSnapshotQuery) o;
        return ObjectUtils.equals(query.getId(), 999L);
      }
    };
  }
View Full Code Here
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.