Sign in
apache
/
brooklyn-server
/
0.4.0
/
.
/
software
/
base
/
src
/
test
/
java
/
brooklyn
/
entity
/
basic
/
lifecycle
/
MyEntityApp.java
blob: 8b09d197f1774f0b64efe88820bec76b1e9bf018 [
file
] [
log
] [
blame
]
package
brooklyn
.
entity
.
basic
.
lifecycle
;
public
class
MyEntityApp
{
public
static
void
main
(
String
[]
args
)
throws
InterruptedException
{
System
.
out
.
println
(
"Properties: "
+
System
.
getProperties
());
Thread
.
sleep
(
60
*
60
*
1000
);
}
}