Example usage for java.io Serializable interface-usage

List of usage examples for java.io Serializable interface-usage

Introduction

In this page you can find the example usage for java.io Serializable interface-usage.

Usage

From source file br.edu.claudivan.controledegastos.domain.Dream.java

/**
 *
 * @author Claudivan Moreira
 */
public class Dream extends AbstractEntity implements Serializable {

From source file br.edu.claudivan.controledegastos.domain.GeneralExpense.java

/**
 *
 * @author Claudivan Moreira
 */
public class GeneralExpense extends Expense implements Serializable {

From source file br.ufba.dcc.wiser.fot.fotbalance.optaplannertest1.solver.BundleDifficultyComparator.java

/**
 *
 * @author jeferson
 */
public class BundleDifficultyComparator implements Comparator<Bundle>, Serializable {

From source file es.pode.administracion.presentacion.estructuraseducativas.tesauros.listar.FormListarTesaurosValidarFormImpl.java

public class FormListarTesaurosValidarFormImpl extends org.apache.struts.validator.ValidatorForm
        implements java.io.Serializable,
        es.pode.administracion.presentacion.estructuraseducativas.tesauros.listar.ValidarSeleccionadosForm {
    private java.util.List seleccionadoRowSelection = null;
    private java.lang.Object[] seleccionadoValueList;
    private java.lang.Object[] seleccionadoLabelList;

From source file org.lnicholls.galleon.database.Playlist.java

/** 
 * Auto-generated using Hibernate hbm2java tool.
 * Copyright (C) 2005, 2006 Leon Nicholls
 * This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public
 * License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later
 * version.

From source file server.entity.FriendsGroup.java

/**
 *
 * @author oglandx
 */
@Entity
@Table(name = "friendsGroup")

From source file es.pode.administracion.presentacion.monitorizarnodos.monitorizar.MonitorizarNodosFormImpl.java

public class MonitorizarNodosFormImpl extends org.apache.struts.validator.ValidatorForm implements
        java.io.Serializable, es.pode.administracion.presentacion.monitorizarnodos.monitorizar.EstadoNodosForm {
    private java.util.Collection estados;
    private java.lang.Object[] estadosValueList;
    private java.lang.Object[] estadosLabelList;

From source file org.roda_project.commons_ip.model.IPContentType.java

public class IPContentType implements Serializable {
    private static final long serialVersionUID = 1191075605637022551L;

    public enum IPContentTypeEnum {
        SFSB, RDB, ERMS, GEODATA, MIXED, OTHER;
    }

From source file demo.model.Related.java

/**
 *
 * @author jllach
 */
@Document
public class Related extends Parent implements Serializable {

From source file com.josue.shared.online.NetworkPackage.java

/**
 * @author Josue
 */
//*** MAPS THE POLYMORPHIC CLASS TO THE PROPERTY 'type' ***
@JsonTypeInfo(use = JsonTypeInfo.Id.NAME, include = JsonTypeInfo.As.PROPERTY, property = "type") //the field name
@JsonSubTypes({ @Type(value = NetworkMessage.class, name = "MESSAGE"),