object
LicenseData extends ModelCompanion[LicenseData, ObjectId]
Value Members
-
final
def
!=(arg0: AnyRef): Boolean
-
final
def
!=(arg0: Any): Boolean
-
final
def
##(): Int
-
final
def
==(arg0: AnyRef): Boolean
-
final
def
==(arg0: Any): Boolean
-
final
def
asInstanceOf[T0]: T0
-
def
clone(): AnyRef
-
def
count(q: com.mongodb.casbah.Imports.DBObject, fieldsThatMustExist: List[String], fieldsThatMustNotExist: List[String], rp: com.mongodb.casbah.Imports.ReadPreference): Long
-
val
dao: SalatDAO[LicenseData, ObjectId]
-
def
defaultReadPreference: ReadPreference
-
def
defaultWriteConcern: WriteConcern
-
final
def
eq(arg0: AnyRef): Boolean
-
def
equals(arg0: Any): Boolean
-
def
finalize(): Unit
-
def
find[A, B](ref: A, keys: B, rp: com.mongodb.casbah.Imports.ReadPreference)(implicit arg0: (A) ⇒ com.mongodb.casbah.Imports.DBObject, arg1: (B) ⇒ com.mongodb.casbah.Imports.DBObject): SalatMongoCursor[LicenseData]
-
def
find[A, B](ref: A, keys: B)(implicit arg0: (A) ⇒ DBObject, arg1: (B) ⇒ DBObject): SalatMongoCursor[LicenseData]
-
def
find[A](ref: A)(implicit arg0: (A) ⇒ DBObject): SalatMongoCursor[LicenseData]
-
def
findAll(): SalatMongoCursor[LicenseData]
-
def
findOne[A](t: A, rp: com.mongodb.casbah.Imports.ReadPreference)(implicit arg0: (A) ⇒ com.mongodb.casbah.Imports.DBObject): Option[LicenseData]
-
def
findOne[A](t: A)(implicit arg0: (A) ⇒ DBObject): Option[LicenseData]
-
def
findOneById(id: ObjectId): Option[LicenseData]
-
def
fromJSON(s: String): LicenseData
-
def
fromJSON(j: JObject): LicenseData
-
def
fromJSONArray(s: String): List[LicenseData]
-
def
fromJSONArray(j: JArray): List[LicenseData]
-
def
fromMap(m: Map[String, Any]): LicenseData
-
final
def
getClass(): Class[_]
-
def
hashCode(): Int
-
def
ids[A](query: A)(implicit arg0: (A) ⇒ com.mongodb.casbah.Imports.DBObject): List[ObjectId]
-
def
insert(t: LicenseData, wc: com.mongodb.casbah.Imports.WriteConcern): Option[ObjectId]
-
def
insert(docs: Traversable[LicenseData], wc: com.mongodb.casbah.Imports.WriteConcern): List[Option[ObjectId]]
-
def
insert(docs: LicenseData*)(implicit wc: WriteConcern): List[Option[ObjectId]]
-
def
insert(t: LicenseData): Option[ObjectId]
-
final
def
isInstanceOf[T0]: Boolean
-
lazy val
log: Logger
-
final
def
ne(arg0: AnyRef): Boolean
-
final
def
notify(): Unit
-
final
def
notifyAll(): Unit
-
def
primitiveProjection[P](query: com.mongodb.casbah.Imports.DBObject, field: String)(implicit m: Manifest[P], ctx: Context): Option[P]
-
def
primitiveProjections[P](query: com.mongodb.casbah.Imports.DBObject, field: String)(implicit m: Manifest[P], ctx: Context): List[P]
-
def
projection[P <: CaseClass](query: com.mongodb.casbah.Imports.DBObject, field: String)(implicit m: Manifest[P], ctx: Context): Option[P]
-
def
projections[P <: CaseClass](query: com.mongodb.casbah.Imports.DBObject, field: String)(implicit m: Manifest[P], ctx: Context): List[P]
-
def
remove[A](q: A, wc: com.mongodb.casbah.Imports.WriteConcern)(implicit arg0: (A) ⇒ com.mongodb.casbah.Imports.DBObject): com.mongodb.casbah.Imports.WriteResult
-
def
remove(t: LicenseData, wc: com.mongodb.casbah.Imports.WriteConcern): com.mongodb.casbah.Imports.WriteResult
-
def
remove[A](q: A)(implicit arg0: (A) ⇒ DBObject): com.mongodb.casbah.Imports.WriteResult
-
def
remove(t: LicenseData): com.mongodb.casbah.Imports.WriteResult
-
def
removeById(id: ObjectId, wc: com.mongodb.casbah.Imports.WriteConcern): com.mongodb.casbah.Imports.WriteResult
-
def
removeByIds(ids: List[ObjectId], wc: com.mongodb.casbah.Imports.WriteConcern): com.mongodb.casbah.Imports.WriteResult
-
def
save(t: LicenseData, wc: com.mongodb.casbah.Imports.WriteConcern): com.mongodb.casbah.Imports.WriteResult
-
def
save(t: LicenseData): com.mongodb.casbah.Imports.WriteResult
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
-
def
toCompactJSONArray(t: Traversable[LicenseData]): String
-
def
toCompactJson(t: LicenseData): String
-
def
toDBObject(t: LicenseData): com.mongodb.casbah.Imports.DBObject
-
def
toJSONArray(t: Traversable[LicenseData]): JArray
-
def
toJson(t: LicenseData): JObject
-
def
toMap(t: LicenseData): Map[String, Any]
-
def
toObject(dbo: com.mongodb.casbah.Imports.DBObject): LicenseData
-
def
toPrettyJSONArray(t: Traversable[LicenseData]): String
-
def
toPrettyJson(t: LicenseData): String
-
def
toString(): String
-
def
update(q: com.mongodb.casbah.Imports.DBObject, o: com.mongodb.casbah.Imports.DBObject, upsert: Boolean, multi: Boolean, wc: com.mongodb.casbah.Imports.WriteConcern): com.mongodb.casbah.Imports.WriteResult
-
def
update(q: DBObject, t: LicenseData, upsert: Boolean, multi: Boolean, wc: WriteConcern): com.mongodb.casbah.Imports.WriteResult
-
final
def
wait(): Unit
-
final
def
wait(arg0: Long, arg1: Int): Unit
-
final
def
wait(arg0: Long): Unit
Deprecated Value Members
-
def
findOneByID(id: ObjectId): Option[LicenseData]
Inherited from Logging
Inherited from AnyRef
Inherited from Any
ModelCompanion object for the models.LicenseData class. Specific to MongoDB implementation, so should either be in it's own utility class within services, or, as it is currently implemented, within one of the common services classes that utilize it.