Sign in
apache
/
cloudstack
/
f3f3d37a062b6747130cb43ebbdbfe548b47fefc
/
.
/
server
/
src
/
com
/
cloud
/
api
/
doc
/
Alert.java
blob: 56d82cafbec01a1060fbef87ded691698880c958 [
file
] [
log
] [
blame
]
package
com
.
cloud
.
api
.
doc
;
public
class
Alert
{
private
String
type
;
private
int
value
;
public
Alert
(
String
type
,
int
value
)
{
this
.
type
=
type
;
this
.
value
=
value
;
}
public
String
getType
()
{
return
type
;
}
public
int
getValue
()
{
return
value
;
}
}