Skip to content

Instantly share code, notes, and snippets.

@albertoruvel
Created September 27, 2015 22:57
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 albertoruvel/067462d974051fdd363b to your computer and use it in GitHub Desktop.
Save albertoruvel/067462d974051fdd363b to your computer and use it in GitHub Desktop.
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package com.springip.server.model;
/**
*
* @author Alberto
*/
public class Result {
private int status;
public Result(int status) {
this.status = status;
}
public int getStatus() {
return status;
}
public void setStatus(int status) {
this.status = status;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment