Removed checkstyle warnings.
[bgpcep.git] / tcp-md5 / api / src / main / java / org / opendaylight / bgpcep / tcpmd5 / KeyAccess.java
index 844ffe72e8bf8ad6b7d78d461746c73a74f05814..797167097f43db91c674d7eeab761d84884ffed6 100644 (file)
@@ -15,21 +15,22 @@ import javax.annotation.Nonnull;
  * Interface for accessing key information attached to an object.
  */
 public interface KeyAccess {
-       /**
-        * Retrieve the key mapping.
-        *
-        * @return The key mapping currently attached.
-        * @throws IOException when the retrieve operation fails.
-        */
-       @Nonnull KeyMapping getKeys() throws IOException;
+    /**
+     * Retrieve the key mapping.
+     *
+     * @return The key mapping currently attached.
+     * @throws IOException when the retrieve operation fails.
+     */
+    @Nonnull
+    KeyMapping getKeys() throws IOException;
 
-       /**
-        * Attach key mappings.
-        *
-        * @param keys Mappings which should
-        * @throws IOException when the set operation fails.
-        * @throws IllegalArgumentException if a key length is zero or it exceeds
-        *         platform-supported length (usually 80 bytes).
-        */
-       void setKeys(@Nonnull KeyMapping keys) throws IOException;
+    /**
+     * Attach key mappings.
+     *
+     * @param keys Mappings which should
+     * @throws IOException when the set operation fails.
+     * @throws IllegalArgumentException if a key length is zero or it exceeds platform-supported length (usually 80
+     *         bytes).
+     */
+    void setKeys(@Nonnull KeyMapping keys) throws IOException;
 }