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 org.obiba.mica.core.domain.Membership.java

public class Membership implements Serializable {

    public final static String INVESTIGATOR = "investigator";

    public final static String CONTACT = "contact";

From source file th.co.geniustree.dental.model.Authority.java

/**
 *
 * @author Best
 */
@Entity
@Table(name = "AUTHORITY")

From source file com.mirth.connect.donkey.model.channel.CronProperty.java

@XStreamAlias("cronProperty")
public class CronProperty implements Serializable {
    private String description;
    private String expression;

    public CronProperty(String description, String expression) {

From source file com.enonic.cms.core.structure.page.PageWindowEntity.java

public class PageWindowEntity implements Serializable {
    private PageWindowKey key;

    private int order;

    private Date timestamp;

From source file ie.lyit.project.base.BaseObject.java

/**
 *
 * @author Previn
 */
public class BaseObject implements Serializable {
    private static final StandardToStringStyle style = new StandardToStringStyle();

From source file net.lizhaoweb.datasource.mysql.etago.model.Abstract4CloudSearch.java

/**
 * @author <a href="http://www.lizhaoweb.cn">??(John.Lee)</a>
 * @notes Created on 20160714<br>
 * Revision of last commit:$Revision$<br>
 * Author of last commit:$Author$<br>
 * Date of last commit:$Date$<br>

From source file org.mayocat.model.AddonGroup.java

/**
 * @version $Id: f75674e3ac650e10de38588a7381b89ae62f7b3f $
 */
public class AddonGroup implements Serializable {
    @JsonIgnore
    private UUID entityId;

From source file com.enonic.cms.domain.structure.page.template.PageTemplateKey.java

/**
 *
 */
public class PageTemplateKey implements Serializable {
    private int intValue;

From source file com.enonic.cms.domain.structure.menuitem.ContentHomeEntity.java

public class ContentHomeEntity implements Serializable {
    private ContentHomeKey key;

    private MenuItemEntity menuItem;

    private PageTemplateEntity pageTemplate;

From source file com.mirth.connect.client.ui.panels.export.ExportFormat.java

public class ExportFormat implements Serializable {
    private boolean destination = false;
    private String connectorType;
    private ContentType contentType;

    public ExportFormat(boolean destination, String connectorType, ContentType contentType) {