List of usage examples for java.io Serializable interface-usage
From source file br.gov.to.secad.aede.util.CriptografiaHash.java
/** * * @author alex.santos */ public class CriptografiaHash implements Serializable {
From source file com.enonic.cms.domain.content.binary.ContentBinaryDataKey.java
public class ContentBinaryDataKey extends AbstractIntegerBasedKey implements Serializable { public ContentBinaryDataKey(String key) { init(key); }
From source file Data.java
class Data implements Serializable { private int value; public Data(int init) { value = init; }
From source file org.lnicholls.galleon.database.PersistentValue.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 com.enonic.cms.core.structure.portlet.PortletKey.java
public class PortletKey extends AbstractIntegerBasedKey implements Serializable { public PortletKey(String key) { init(key); }
From source file com.enonic.cms.domain.structure.portlet.PortletKey.java
public class PortletKey extends AbstractIntegerBasedKey implements Serializable { public PortletKey(String key) { init(key); }
From source file gr.aueb.cs.nlp.wordtagger.data.structure.Word.java
/**
*
* @author Thomas Asikis
* @license Copyright (c) 2016 Thomas Asikis
* Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
* The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
From source file com.hrs.model.dto.addResume.HiddenAddResumeDTO.java
public class HiddenAddResumeDTO implements Serializable { private static final long serialVersionUID = 6919277692579909430L; private String sumProject; private String sumExperience;
From source file SerialDemo.java
/** * Example 6-2. */ public class SerialDemo implements Serializable { static public void main(String[] args) { try {
From source file com.playersun.jbf.common.entity.BaseEntity.java
public abstract class BaseEntity<T> implements Serializable { private static final long serialVersionUID = 8907307663203988814L; protected Long id;