blob: c04ae5c0f0190642aa49ed03af6c583afe800f68 [file] [log] [blame]
/*
* Copyright 2004 The Apache Software Foundation.
*
* Licensed 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.kandula;
/**
* @author <a href="mailto:thilina@opensource.lk"> Thilina Gunarathne </a>
*/
abstract public interface Status {
interface ParticipantStatus {
public static final int STATUS_VOLATILE_PREPARING = 20;
public static final int STATUS_DURABLE_PREPARING = 21;
public static final int STATUS_ABORTED = 22;
public static final int STATUS_READ_ONLY = 23;
}
interface CoordinatorStatus {
public static final int STATUS_NONE = 6;
public static final int STATUS_COMMITTING = 8;
public static final int STATUS_PREPARING = 10;
public static final int STATUS_PREPARING_DURABLE = 11;
public static final int STATUS_PREPARING_VOLATILE = 12;
public static final int STATUS_PREPARED_SUCCESS = 13;
public static final int STATUS_PREPARED = 14;
public static final int STATUS_ABORTING = 9;
public static final int STATUS_ACTIVE = 0;
}
}