Last active
January 2, 2016 14:19
-
-
Save rominirani/8315485 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
package com.mindstorm.famousquotes.service; | |
import java.util.ArrayList; | |
import java.util.List; | |
import com.mindstorm.famousquotes.entity.Quote; | |
public class QuoteService { | |
public static List<Quote> quotes = new ArrayList<Quote>(); | |
public Quote addQuote(Integer id, String author, String message) throws Exception { | |
//Check for already exists | |
int index = quotes.indexOf(new Quote(id)); | |
if (index != -1) throw new Exception("Quote Record already exists"); | |
Quote q = new Quote(id, author, message); | |
quotes.add(q); | |
return q; | |
} | |
public Quote updateQuote(Quote q) throws Exception { | |
int index = quotes.indexOf(q); | |
if (index == -1) throw new Exception("Quote Record does not exist"); | |
Quote currentQuote = quotes.get(index); | |
currentQuote.setAuthor(q.getAuthor()); | |
currentQuote.setMessage(q.getMessage()); | |
return q; | |
} | |
public void removeQuote(Integer id) throws Exception { | |
int index = quotes.indexOf(new Quote(id)); | |
if (index == -1) | |
throw new Exception("Quote Record does not exist"); | |
quotes.remove(index); | |
} | |
public List<Quote> getQuotes() { | |
return quotes; | |
} | |
public List<Quote> getQuotesByAuthor(String author) { | |
List<Quote> results = new ArrayList<Quote>(); | |
for (Quote quote : quotes) { | |
if (quote.getAuthor().indexOf(author) != -1) { | |
results.add(quote); | |
} | |
} | |
return results; | |
} | |
public Quote getQuote(Integer id) throws Exception { | |
int index = quotes.indexOf(new Quote(id)); | |
if (index == -1) | |
throw new Exception("Quote Record does not exist"); | |
return quotes.get(index); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment