Skip to content

Commit d654fb1

Browse files
committed
er
1 parent c2bf9aa commit d654fb1

2 files changed

Lines changed: 12 additions & 0 deletions

File tree

modules/packed/src/main/java/app/packed/component/OnComponentGuestLifecycle.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030

3131
// I think also the things the actual guest have
3232
// Do we need a ComponentGuestLifecycleContext? Hmmm...
33+
// Vil nok ogsaa gerne bruge den paa sidebeans
3334
public @interface OnComponentGuestLifecycle {
3435

3536
// if non empty, only for transitions from the specified

modules/packed/src/main/java/app/packed/namespace/sandbox/NamespaceWirelets.java

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,21 @@
1515
*/
1616
package app.packed.namespace.sandbox;
1717

18+
import app.packed.container.Wirelet;
19+
import app.packed.namespace.NamespaceConfiguration;
20+
1821
/**
1922
*
2023
*/
2124
public class NamespaceWirelets {
2225

26+
public static Wirelet newNamespaces() {
27+
throw new UnsupportedOperationException();
28+
}
29+
30+
@SuppressWarnings("unchecked")
31+
public static Wirelet newNamespaces(Class<? extends NamespaceConfiguration<?>>... namespaces) {
32+
throw new UnsupportedOperationException();
33+
}
2334
// rename
2435
}

0 commit comments

Comments
 (0)