blob: c939dd310fad3b0b8c25190ef46ac104f7b6f317 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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 org.apache.usergrid.corepersistence.index;
/**
* An interface for re-indexing all entities in an application
*/
public interface CollectionDeleteService {
/**
* Perform a collection delete via service
*
* @param collectionDeleteRequestBuilder The builder to build the request
*/
CollectionDeleteStatus deleteCollection(final CollectionDeleteRequestBuilder collectionDeleteRequestBuilder);
/**
* Generate a build for the collection delete
*/
CollectionDeleteRequestBuilder getBuilder();
/**
* Get the status of a job
* @param jobId The jobId returned during the collection delete
* @return
*/
CollectionDeleteStatus getStatus(final String jobId);
/**
* The response when requesting a collection delete operation
*/
public class CollectionDeleteStatus {
final String jobId;
final Status status;
final long numberProcessed;
final long lastUpdated;
public CollectionDeleteStatus(final String jobId, final Status status, final long numberProcessed,
final long lastUpdated ) {
this.jobId = jobId;
this.status = status;
this.numberProcessed = numberProcessed;
this.lastUpdated = lastUpdated;
}
/**
* Get the jobId used to resume this operation
*/
public String getJobId() {
return jobId;
}
/**
* Get the last updated time, as a long
* @return
*/
public long getLastUpdated() {
return lastUpdated;
}
/**
* Get the number of records processed
* @return
*/
public long getNumberProcessed() {
return numberProcessed;
}
/**
* Get the status
* @return
*/
public Status getStatus() {
return status;
}
}
enum Status{
STARTED, INPROGRESS, COMPLETE, UNKNOWN;
}
}