Internal Website Search

111-120 of 200 resultsRefresh

openejb jpa jaas module

(); } } package com.bayner.jpa; import javax.persistence.*; import java.io.Serializable; import ... , allocationSize = 50 ) public class Principals implements Serializable,Principal { private String ... .*; import java.io.Serializable; import java.util.List; /** * Created with IntelliJ IDEA. * User

JPA inheritance issue with ObjectDB - Field not found in type error

Item implements Serializable, Comparable<Item> { boolean retired; // other fields ... implements Serializable { // ... } @Entity @Inheritance public class Vtm extends PharmaceuticalItem implements Serializable { // ... } I have a JPQL

General Performance Issues Illustrated with a Specific Method

.health.phsp.entity; import java.io.Serializable; import java.util.Date; import javax.jdo ... .health.phsp.pojcs.Identifiable; @Entity @Table public class Client implements Serializable ... .io.Serializable; import java.util.Date; import javax.jdo.annotations.Index; import javax

Field not persisted in abstract class with two level of nesting

> package BUG2; import java.io.Serializable; import javax.persistence ... public class MHD1 implements Serializable{     private TZ1 timezone;    ... .Serializable; import javax.persistence.Embeddable; @Embeddable public abstract class ATT<

Is it ok to put list or map of embeddable objects in entity ?

that have my own, serializable classes inside as parameters. When I try to inspect them with explorer, there is an error ... it is serializable_types">recommended to avoid relying on Java serialization and instead to define each of these serializable classes also as embeddable.

Trouble bug on explorer

javax.jdo.annotations.Index; import javax.persistence.*; import java.io.Serializable; import java ... ") }) @SequenceGenerator(name="seq", initialValue=10000) @Entity public class User implements Serializable { @Id ... ; import javax.persistence.Entity; import javax.persistence.Id; import java.io.Serializable

Error 363 - Failed to read value of inverse relationship

class="pre-java"> @Entity public class Player implements Serializable { private static ... Serializable { private static final long serialVersionUID = 1L; @Id @GeneratedValue ... ="pre-java"> import java.io.Serializable; import java.util.*; import javax.persistence.*; @Entity

Unexpected exception (error 990)

"> @Embeddable public class Persona implements Serializable { protected String DNI ... implements Serializable{ private Integer numt; Scanner entrada = new Scanner ... (); } } @Entity public class Vehiculo implements Serializable { @Id

Should I be able to persist a JFrame (or gui components in general)?

that just has a JFrame attempting to persist. //i tried this with and without Serializable ... java.io.Serializable; import javax.persistence.*; /** * * @author Sammy Guergachi <sguergachi ... Serializable { private static final long serialVersionUID = 1L; @Id @GeneratedValue

Error reading UTF string (Serialized Objects in Explorer)

> It seems that there is a problem in reading the pricing field, whose type is serializable (Money). Using serializable types is not recommended (embeddable ... doesn't have the serializable class, which is needed during read. Please check this query