Skip to content

Instantly share code, notes, and snippets.

@noriyukitakei
Created April 16, 2018 23:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save noriyukitakei/3d493ac3a52cd4645c4759a881b270d4 to your computer and use it in GitHub Desktop.
Save noriyukitakei/3d493ac3a52cd4645c4759a881b270d4 to your computer and use it in GitHub Desktop.
Spring Web Flowによる今どきでないWebアプリケーション開発
package com.sios.flow;
import java.io.Serializable;
public class SearchForm implements Serializable{
private static final long serialVersionUID = 1L;
private String title;
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment