-
Notifications
You must be signed in to change notification settings - Fork 225
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Marco Boeck
committed
Aug 31, 2016
1 parent
6191885
commit 85d3bee
Showing
7 changed files
with
190 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
version=7.2.1 | ||
version=7.2.2 | ||
group=com.rapidminer.studio |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
72 changes: 72 additions & 0 deletions
72
src/main/java/com/rapidminer/studio/internal/ProcessFlowFilterRegistry.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
/** | ||
* Copyright (C) 2001-2016 by RapidMiner and the contributors | ||
* | ||
* Complete list of developers available at our web site: | ||
* | ||
* http://rapidminer.com | ||
* | ||
* This program is free software: you can redistribute it and/or modify it under the terms of the | ||
* GNU Affero General Public License as published by the Free Software Foundation, either version 3 | ||
* of the License, or (at your option) any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without | ||
* even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
* Affero General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU Affero General Public License along with this program. | ||
* If not, see http://www.gnu.org/licenses/. | ||
*/ | ||
package com.rapidminer.studio.internal; | ||
|
||
import java.security.AccessController; | ||
|
||
import com.rapidminer.operator.execution.ProcessFlowFilter; | ||
import com.rapidminer.security.PluginSandboxPolicy; | ||
|
||
|
||
/** | ||
* Registry for a {@link ProcessFlowFilter}. | ||
* | ||
* @author Marcel Michel | ||
* @since 7.2.2 | ||
*/ | ||
public enum ProcessFlowFilterRegistry { | ||
|
||
INSTANCE; | ||
|
||
private ProcessFlowFilter filter; | ||
|
||
/** | ||
* Registers the filter. | ||
* | ||
* Note: Only one registration is allowed. All following request will result in an | ||
* {@link IllegalStateException}. | ||
* | ||
* @param filter | ||
* the filter to register | ||
* @throws SecurityException | ||
* if caller does not have {@link RuntimePermission} for | ||
* {@code accessClassInPackage.rapidminer.internal} | ||
*/ | ||
public void register(ProcessFlowFilter filter) { | ||
if (System.getSecurityManager() != null) { | ||
AccessController.checkPermission(new RuntimePermission(PluginSandboxPolicy.RAPIDMINER_INTERNAL_PERMISSION)); | ||
} | ||
if (filter == null) { | ||
throw new IllegalArgumentException("Filter cannot be null"); | ||
} | ||
if (this.filter != null) { | ||
throw new IllegalStateException("Filter already defined"); | ||
} | ||
this.filter = filter; | ||
} | ||
|
||
/** | ||
* Getter for the registered {@link ProcessFlowFilter}. | ||
* | ||
* @return The the registered filter or {@code null} | ||
*/ | ||
public ProcessFlowFilter getProcessFlowFilter() { | ||
return filter; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters