Skip to content

Commit

Permalink
WorkflowableV2 interface started
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelwechner committed Apr 26, 2016
1 parent 6de3018 commit 064ea14
Showing 1 changed file with 30 additions and 0 deletions.
@@ -0,0 +1,30 @@
/*
* Copyright 2016 Wyona
*
* 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.wyona.org/licenses/APACHE-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.wyona.yanel.core.api.attributes;

import org.wyona.yanel.core.workflow.Workflow;
import org.wyona.yanel.core.workflow.WorkflowException;

/**
* DEV (not released yet, this interface still might change ...)
*/
public interface WorkflowableV2 {

/**
* Get workflow instance of resource implementing this interface
*/
public Workflow getWorkflow() throws WorkflowException;
}

0 comments on commit 064ea14

Please sign in to comment.