org.apache.isis.extensions.commandreplay.primary.IsisModuleExtCommandReplayPrimary Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of isis-extensions-command-replay-primary
Show all versions of isis-extensions-command-replay-primary
A module for obtaining commands from a primary
The newest version!
/*
* 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.isis.extensions.commandreplay.primary;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.Import;
import org.springframework.context.annotation.Profile;
import org.apache.isis.extensions.commandlog.model.IsisModuleExtCommandLogApplib;
import org.apache.isis.extensions.commandreplay.primary.config.PrimaryConfig;
import org.apache.isis.extensions.commandreplay.primary.mixins.Object_openOnSecondary;
import org.apache.isis.extensions.commandreplay.primary.restapi.CommandRetrievalService;
import org.apache.isis.extensions.commandreplay.primary.spiimpl.CaptureResultOfCommand;
import org.apache.isis.extensions.commandreplay.primary.ui.CommandReplayOnPrimaryService;
/**
* @since 2.0 {@index}
*/
@Configuration
@Import({
// @Configuration's
IsisModuleExtCommandLogApplib.class,
// @Service's
CommandRetrievalService.class,
CommandReplayOnPrimaryService.class,
CaptureResultOfCommand.class,
PrimaryConfig.class,
// mixins
Object_openOnSecondary.class,
})
@Profile("primary")
public class IsisModuleExtCommandReplayPrimary {
public static final String NAMESPACE = "isis.ext.commandReplayPrimary";
public abstract static class ActionDomainEvent
extends org.apache.isis.applib.events.domain.ActionDomainEvent { }
public abstract static class CollectionDomainEvent
extends org.apache.isis.applib.events.domain.CollectionDomainEvent { }
public abstract static class PropertyDomainEvent
extends org.apache.isis.applib.events.domain.PropertyDomainEvent { }
}