/jbpm-flow/src/main/java/org/jbpm/process/core/ContextContainer.java
https://github.com/michelpohle/jbpm · Java · 36 lines · 9 code · 8 blank · 19 comment · 0 complexity · 6c2fcf30e9f23676ed0d2a51376efe4c MD5 · raw file
- /**
- * Copyright 2010 JBoss Inc
- *
- * 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.
- */
- package org.jbpm.process.core;
- import java.util.List;
- /**
- *
- * @author <a href="mailto:kris_verlaenen@hotmail.com">Kris Verlaenen</a>
- */
- public interface ContextContainer {
- List<Context> getContexts(String contextType);
-
- void addContext(Context context);
-
- Context getContext(String contextType, long id);
-
- void setDefaultContext(Context context);
-
- Context getDefaultContext(String contextType);
- }