Advertisement
Guest User

Untitled

a guest
Jul 15th, 2019
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.20 KB | None | 0 0
  1. public class CacheDataSource {
  2.     private List<Item> items;
  3.    
  4.     public List<Item> getItems() {
  5.         return items;
  6.     }
  7.  
  8.     public void putItems(List<Item> items) {
  9.         this.items = items;
  10.     }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement