Skip to content
  • Projects
  • Groups
  • Snippets
  • Help

Codecrew / Moya

  • This project
    • Loading...
  • Sign in
Go to a project
  • Project
  • Repository
  • Issues 30
  • Merge Requests 2
  • Wiki
  • Snippets
  • 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
  • Tuomas Riihimäki's avatar
    Hmm. vähän kaikkea, kai.. · 07f6ac62
    Tuomas Riihimäki committed Aug 17, 2010
    07f6ac62
ModelInterface.java 256 Bytes
BlameHistoryPermalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
package fi.insomnia.bortal.model;

import java.io.Serializable;

public interface ModelInterface extends Serializable {

    Integer getId();

    void setId(Integer id);

    int getJpaVersionField();

    void setJpaVersionField(int jpaVersionField);

}