1 /*******************************************************************************
\r
2 * Copyright (c) 2007, 2010 Association for Decentralized Information Management
\r
3 * in Industry THTH ry.
\r
4 * All rights reserved. This program and the accompanying materials
\r
5 * are made available under the terms of the Eclipse Public License v1.0
\r
6 * which accompanies this distribution, and is available at
\r
7 * http://www.eclipse.org/legal/epl-v10.html
\r
10 * VTT Technical Research Centre of Finland - initial API and implementation
\r
11 *******************************************************************************/
\r
12 package org.simantics.db.layer0.service;
\r
14 import java.util.Collection;
\r
16 import org.simantics.db.RequestProcessor;
\r
17 import org.simantics.db.Resource;
\r
18 import org.simantics.db.exception.DatabaseException;
\r
19 import org.simantics.db.layer0.adapter.Activation;
\r
22 * Manages trigger activations.
\r
23 * This is a Session service. Acquire it
\r
24 * by calling Session.getService(ActivationManager.class).
\r
26 public interface ActivationManager {
\r
29 * Activates all triggers attached to the resource
\r
30 * (by HasTrigger-relation). A trigger is active
\r
31 * as long as there is one or more activations
\r
34 Collection<Activation> activate(RequestProcessor processor, Resource resource) throws DatabaseException;
\r
36 //Activation activate(Resource resource);
\r