 1 | (The classes all implement Serializable where necessary, via a common inherited logging service class |
 1 | . "An entity or IdClass class should implement the java.io.Serializable interface |
 1 | implements Serializable {
@Id @GeneratedValue
private long id;
String company_pkey |
 1 | implements Serializable{
private static final long serialVersionUID = 1L |
 1 | When I use @OrderBy and supply multiple order fields I get and error when ObjectDB Explorer expands a instance of the entity. Example code:
@Entity
@Table(name="Defects", schema = "myDB")
public class Defects implements Serializable
{
...
...
@OneToMany(mappedBy="defect |
 1 | Hi, Given :
@Entity(name = "Inspiration")
public class Inspiration implements Serializable {
....
@ManyToOne(fetch = FetchType.EAGER)
protected Atelier atelier;
....
}
I have a query :
SELECT i FROM Inspiration i WHERE i.atelier.id = 3 When I run this query I get wrong |
 1 | We have a class with a one to many relationship declared like this (1 or more objects of the same class are linked into the relationship, no circular referencing):
@Entity
public class ObjectNode implements Serializable {
private static final long serialVersionUID = 1L;
@Id
public String |
 1 | ... The Customer class code:
@Entity
public class Customer implements Serializable {
private |
 1 | I don't think JDO supports altering an entity's Application Identity. Does ObjectDB?
@PersistenceCapable public class MyClass implements Serializable, Cloneable{
@Id private StringIdentity id;
...
}
PersistenceManager persistenceManager = ...;
Transaction transaction |
 1 | Serializable {
private static final long serialVersionUID = 1L;
@Id
public String uUid |