Skip to content
  • Projects
  • Groups
  • Snippets
  • Help

Riina Antikainen / Moya

  • This project
    • Loading...
  • Sign in
Go to a project
  • Project
  • Repository
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Settings
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Branches
  • Tags
  • Contributors
  • Graph
  • Compare
  • Charts
Switch branch/tag
  • moya
  • ..
  • model
  • ModelInterface.java
  • jkj's avatar
    formatting · 2773b427
    git-svn-id: https://dev.intra.insomnia.fi/svn/trunk@55 8cf89bec-f6a3-4178-919f-364fb3449fe5
    jkj committed Mar 07, 2010
    2773b427 Browse Files
ModelInterface.java 413 Bytes
BlameHistoryPermalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

package fi.insomnia.bortal.model;

import java.io.Serializable;

/**
 * 
 * @author tuukka
 */
public interface ModelInterface extends Serializable {
    public Integer getId();

    public void setId(Integer id);

    public int getJpaVersionField();

    public void setJpaVersionField(int jpaVersionField);
}