Advertisement
Guest User

Untitled

a guest
Apr 24th, 2017
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. package fr.oss.es.devbasics.search.es.index;
  2.  
  3. public class Index {
  4.  
  5. private final String indexName;
  6.  
  7. public Index(String indexName) {
  8. this.indexName = indexName;
  9. }
  10.  
  11. public String getIndexName() {
  12. return this.indexName;
  13. }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement