Sho SHIMIZU

Create default contstructor for serialization

Change-Id: Id21367b5fab38946f88dfee1a58d97eee0c0a0fc
......@@ -40,6 +40,12 @@ final class ContinuousResourceAllocation {
this.allocations = allocations;
}
// for serializer
private ContinuousResourceAllocation() {
this.original = null;
this.allocations = null;
}
/**
* Checks if there is enough resource volume to allocated the requested resource
* against the specified resource.
......