-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Search kifu - send param from client to server
- Loading branch information
Showing
7 changed files
with
137 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
46 changes: 46 additions & 0 deletions
46
...shared/src/main/java/com/playshogi/website/gwt/shared/models/KifuSearchFilterDetails.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
package com.playshogi.website.gwt.shared.models; | ||
|
||
import java.io.Serializable; | ||
|
||
public class KifuSearchFilterDetails implements Serializable { | ||
|
||
private String partialPositionSearchSfen; | ||
private String playerName; | ||
private String gameResult; | ||
|
||
public KifuSearchFilterDetails() { | ||
} | ||
|
||
public String getPartialPositionSearchSfen() { | ||
return partialPositionSearchSfen; | ||
} | ||
|
||
public void setPartialPositionSearchSfen(final String partialPositionSearchSfen) { | ||
this.partialPositionSearchSfen = partialPositionSearchSfen; | ||
} | ||
|
||
public String getPlayerName() { | ||
return playerName; | ||
} | ||
|
||
public void setPlayerName(final String playerName) { | ||
this.playerName = playerName; | ||
} | ||
|
||
public String getGameResult() { | ||
return gameResult; | ||
} | ||
|
||
public void setGameResult(final String gameResult) { | ||
this.gameResult = gameResult; | ||
} | ||
|
||
@Override | ||
public String toString() { | ||
return "KifuSearchFilterDetails{" + | ||
"partialPositionSearchSfen='" + partialPositionSearchSfen + '\'' + | ||
", playerName='" + playerName + '\'' + | ||
", gameResult='" + gameResult + '\'' + | ||
'}'; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters