OFailureHandling.java :  » ESB » apache-ode-2.0 » org » apache » ode » bpel » rtrep » v1 » Java Open Source

Java Open Source » ESB » apache ode 2.0 
apache ode 2.0 » org » apache » ode » bpel » rtrep » v1 » OFailureHandling.java
/*
 * 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.ode.bpel.rtrep.v1;

import javax.xml.namespace.QName;
import java.io.Serializable;

/**
 * Holds information about the failure handling of this activity.
 */
public class OFailureHandling implements Serializable {
    private static final long serialVersionUID = 5637366976949702880L;
    
    public static final String EXTENSION_NS_URI = "http://ode.apache.org/activityRecovery";
    public static final QName FAILURE_FAULT_NAME  = new QName(EXTENSION_NS_URI, "activityFailure");
    public static final QName FAILURE_EXT_ELEMENT = new QName(EXTENSION_NS_URI, "failureHandling");

    // Number of times to retry the activity if failure occurs.
    // Defaults to zero.
    public int retryFor;

    // Time delay between retries of the activity, in seconds.
    public int retryDelay;

    // If true, fault when failure occurs, otherwise, enter activity recovery state.
    public boolean faultOnFailure;

}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.