Skip to content

Commit

Permalink
Clean up uberfire-workbench and some of its dependencies (#3)
Browse files Browse the repository at this point in the history
* AF-2700: Create Heatmap internal component (kiegroup#1080)

* AF-2700: Create Heatmap internal component

* Only used external components are exported

* Review changes

* Adding test for listAllComponents

* Removing static functions and using a class for component Api

* improving process selector

* Making process selector expanded again

* increasing version and removing sample logo

* Clean up uberfire-workbench

* Clean up uberfire-workbench

* Clean up uberfire-workbench

* Clean up uberfire-workbench

* Clean up uberfire-workbench

* Clean up uberfire-workbench

* Clean up uberfire-workbench

* Clean up uberfire-workbench

* Clean up uberfire-workbench*

* Clean up uberfire-workbench

* Clean up uberfire-workbench

* Clean up uberfire-workbench

* Clean up uberfire-workbench

* Clean up uberfire-workbench

* Clean up uberfire-workbench

* Clean up uberfire-workbench

* Clean up uberfire-workbench

* Clean up uberfire-workbench

* Clean up uberfire-workbench

* Clean up uberfire-workbench

Co-authored-by: William Antônio Siqueira <[email protected]>
  • Loading branch information
caponetto and jesuino authored Feb 10, 2021
1 parent f3bec09 commit 541c21c
Show file tree
Hide file tree
Showing 971 changed files with 505 additions and 70,752 deletions.
1 change: 0 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -839,7 +839,6 @@
<module>uberfire-preferences</module>
<module>uberfire-extensions</module>
<module>uberfire-m2repo-editor</module>
<module>uberfire-message-console</module>
<module>uberfire-project</module>
<module>uberfire-services</module>
<module>uberfire-structure</module>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,54 +17,11 @@
package org.uberfire.backend.vfs;

import org.uberfire.commons.lifecycle.Disposable;
import org.uberfire.mvp.Command;
import org.uberfire.mvp.ParameterizedCommand;
import org.uberfire.rpc.SessionInfo;

public interface ObservablePath extends Path,
Disposable {

void onRename(final Command command);

void onDelete(final Command command);

void onUpdate(final Command command);

void onCopy(final Command command);

void onConcurrentRename(final ParameterizedCommand<OnConcurrentRenameEvent> command);

void onConcurrentDelete(final ParameterizedCommand<OnConcurrentDelete> command);

void onConcurrentUpdate(final ParameterizedCommand<OnConcurrentUpdateEvent> command);

void onConcurrentCopy(final ParameterizedCommand<OnConcurrentCopyEvent> command);

ObservablePath wrap(final Path path);

Path getOriginal();

public interface OnConcurrentUpdateEvent extends SessionInfo {

Path getPath();
}

public interface OnConcurrentDelete extends SessionInfo {

Path getPath();
}

public interface OnConcurrentRenameEvent extends SessionInfo {

Path getSource();

Path getTarget();
}

public interface OnConcurrentCopyEvent extends SessionInfo {

Path getSource();

Path getTarget();
}
}
Loading

0 comments on commit 541c21c

Please sign in to comment.