Commit 8bcd8616 authored by Noel Alonso's avatar Noel Alonso
Browse files

Añade evento rollback

parent be4c8d9b
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -50,7 +50,9 @@ public abstract class EventTypes {
		DELETE_CONFIRMED = "DELETE_CONFIRMED",
		DELETED = "DELETED",
		DELETE_FAILED = "DELETE_FAILED",
		DELETE_CANCELLED = "DELETE_CANCELLED";
		DELETE_CANCELLED = "DELETE_CANCELLED",
		//FAIL
		ROLLBACK = "ROLLBACK";
		//@formatter:on

	/**
+50 −0
Original line number Diff line number Diff line
package es.redmic.brokerlib.avro.fail;

/*-
 * #%L
 * broker-lib
 * %%
 * Copyright (C) 2019 REDMIC Project / Server
 * %%
 * 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.
 * #L%
 */

import org.apache.avro.Schema;

import es.redmic.brokerlib.avro.common.EventTypes;
import es.redmic.brokerlib.avro.common.SimpleEvent;

public class RollbackEvent extends SimpleEvent {

	// @formatter:off

	public static final org.apache.avro.Schema SCHEMA$ = new org.apache.avro.Schema.Parser().parse("{"
		+ "\"type\":\"record\",\"name\":\"RollbackEvent\","
				+ "\"namespace\":\"es.redmic.brokerlib.avro.fail\",\"fields\":["
			+ getEventBaseSchema() + "]}");
	
	// @formatter:on

	static String type = EventTypes.ROLLBACK;

	public RollbackEvent() {
		super(type);
	}

	@Override
	public Schema getSchema() {
		return SCHEMA$;
	}

}