Sho SHIMIZU

Create default contstructor for serialization

Change-Id: Id21367b5fab38946f88dfee1a58d97eee0c0a0fc
...@@ -40,6 +40,12 @@ final class ContinuousResourceAllocation { ...@@ -40,6 +40,12 @@ final class ContinuousResourceAllocation {
40 this.allocations = allocations; 40 this.allocations = allocations;
41 } 41 }
42 42
43 + // for serializer
44 + private ContinuousResourceAllocation() {
45 + this.original = null;
46 + this.allocations = null;
47 + }
48 +
43 /** 49 /**
44 * Checks if there is enough resource volume to allocated the requested resource 50 * Checks if there is enough resource volume to allocated the requested resource
45 * against the specified resource. 51 * against the specified resource.
......