The NullPointerException happens in k3-operational-entities.jar of k3.ear. k3-operational-entities.jar includes java files with the following validations: {code} import javax.validation.constraints.NotNull; import org.eclipse.jdt.annotation.NonNull;
@NotNull public Integer id;
private short number; @NotNull public short getNumber() { return number; }
@NotNull @JoinColumn(name="customer_fk") public Customer getCustomer() { return customer; }
@Override @Column(name = "first_name") @NotNull public String getFirstName() { return firstName; }
@Column(name="contents", length=100000, columnDefinition="MEDIUMBLOB") @NotNull @Lob public byte[] getContents() { return contents; }
@Column(name="status", columnDefinition = "ENUM") @Enumerated(EnumType.STRING) @NotNull public StatusType getStatus() { return this.status; }
@Column(name = "actor_type", columnDefinition = "ENUM ('OLD_DATA', 'SUPERVISOR', 'CCAGENT', " + "'DRIVER', 'SELFSERVICE', 'AUTOMATION')") @Enumerated(EnumType.STRING) @NotNull public ActorType getActorType() { return actorType; }
@Column(name="agent") @NotNull public String getAgent() { return agent; }
@Column(name="timestamp") @NotNull public Date getTimestamp() { return timestamp; }
@Column(name="type", columnDefinition = "ENUM") @Enumerated(EnumType.STRING) @NotNull public SubscriptionEventType getType() { return type; }
@ManyToOne(fetch=FetchType.LAZY) @JoinColumn(name="subscription_fk") @NotNull public Subscription getSubscription() { return subscription; } {code}
|