Slash'em high
[aquarium] / src / main / scala / gr / grnet / aquarium / charging / state / UserStateBootstrap.scala
  * or implied, of GRNET S.A.
  */
 
-package gr.grnet.aquarium.computation.state
+package gr.grnet.aquarium.charging.state
 
 import gr.grnet.aquarium.policy.UserAgreementModel
 
 /**
- * This is used to bootstrap the [[gr.grnet.aquarium.computation.state.UserState]].
+ * This is used to bootstrap the [[gr.grnet.aquarium.charging.state.UserStateModel]].
  *
  * @author Christos KK Loverdos <loverdos@gmail.com>
  */
 
 case class UserStateBootstrap(
-    userID:             String,
+    userID: String,
     userCreationMillis: Long,
-    initialAgreement:   UserAgreementModel,
-    initialCredits:     Double
+    initialAgreement: UserAgreementModel,
+    initialCredits: Double
 )