Skip to content

Commit af6097a

Browse files
committed
working on the remote create feature
1 parent 6a54eb9 commit af6097a

File tree

27 files changed

+415
-126
lines changed

27 files changed

+415
-126
lines changed

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,3 +20,9 @@ Go to the ''src'' directory and type:
2020
> mvn clean install
2121
2222

23+
TODO
24+
----
25+
26+
- if component's node is remote, we should move the component to that node!
27+
- implements the lifeController
28+
- implements the cilia extension

bin/cube-console-2.0.jar

12 Bytes
Binary file not shown.
5 Bytes
Binary file not shown.

bin/cube-runtime-2.0.jar

1.07 KB
Binary file not shown.

bin/cube-script-extension-2.0.jar

4 Bytes
Binary file not shown.

demo/tutorial3/pc/messages.csv

Whitespace-only changes.

demo/tutorial3/pc/resolution.csv

Whitespace-only changes.

demo/tutorial3/pc/start.sh

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,9 @@ else
3030
fi
3131

3232
# copying needed bundles
33-
cp ../../../bin/cube-core-2.0.jar bundle
33+
cp ../../../bin/cube-runtime-2.0.jar bundle
3434
cp ../../../bin/cube-console-2.0.jar bundle
35-
cp ../../../bin/cube-osgi-plugin-2.0.jar bundle
36-
cp ../../../bin/cube-rm-monitoring-plugin-2.0.jar bundle
35+
cp ../../../bin/cube-rm-monitoring-extension-2.0.jar bundle
3736

3837
cp ../../../lib/org.apache.felix.bundlerepository-1.6.2.jar bundle
3938
cp ../../../lib/org.apache.felix.fileinstall-3.2.0.jar bundle

src/cube-runtime/src/main/java/fr/liglab/adele/cube/autonomicmanager/ArchetypeResolver.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public interface ArchetypeResolver extends RuntimeModelListener {
1818
void resolveUncheckedInstance(ManagedElement instance);
1919

2020
/// helpers
21-
21+
public boolean moveManagedElement(ManagedElement me, String am_uri);
2222
List<String> findFromRuntimeModel(ManagedElement description);
2323
List<String> findUsingArchetypeProperty(String archetypePropertyName, String uuid, ManagedElement description);
2424
boolean checkProperty(String archetypePropertyName, ManagedElement managedElement, String value);

src/cube-runtime/src/main/java/fr/liglab/adele/cube/autonomicmanager/RuntimeModelController.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,5 +50,5 @@ public interface RuntimeModelController {
5050
ExternalInstancesHandler getExternalInstancesHandler();
5151

5252

53-
53+
boolean removeManagedElement(String uuid);
5454
}

0 commit comments

Comments
 (0)