Mass removal of all Tabs (Style Warnings)
[aaf/authz.git] / cadi / core / src / main / java / org / onap / aaf / cadi / Locator.java
index 22258d1..c40cb99 100644 (file)
 package org.onap.aaf.cadi;
 
 public interface Locator<T> {
-       public T get(Locator.Item item) throws LocatorException;
-       public boolean hasItems();
-       public void invalidate(Locator.Item item) throws LocatorException;
-       public Locator.Item best() throws LocatorException;
-       public Item first() throws LocatorException;
-       public Item next(Item item) throws LocatorException;
-       public boolean refresh();
-       public void destroy();
-       
-       public interface Item {}
+    public T get(Locator.Item item) throws LocatorException;
+    public boolean hasItems();
+    public void invalidate(Locator.Item item) throws LocatorException;
+    public Locator.Item best() throws LocatorException;
+    public Item first() throws LocatorException;
+    public Item next(Item item) throws LocatorException;
+    public boolean refresh();
+    public void destroy();
+    
+    public interface Item {}
 
 }