Mass replace CRLF->LF
[openflowjava.git] / openflow-protocol-api / src / main / java / org / opendaylight / openflowjava / protocol / api / connection / TlsConfiguration.java
index 00e1a4109d3dc11af78e52ee5ab49e28fb0a83ab..84eeab3ea1af8c7e94212d2f32732119fec487e4 100644 (file)
@@ -1,65 +1,65 @@
-/*\r
- * Copyright (c) 2014 Pantheon Technologies s.r.o. and others. All rights reserved.\r
- *\r
- * This program and the accompanying materials are made available under the\r
- * terms of the Eclipse Public License v1.0 which accompanies this distribution,\r
- * and is available at http://www.eclipse.org/legal/epl-v10.html\r
- */\r
-\r
-package org.opendaylight.openflowjava.protocol.api.connection;\r
-\r
-import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.config.rev140630.KeystoreType;\r
-import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.config.rev140630.PathType;\r
-\r
-\r
-/**\r
- * @author michal.polkorab\r
- *\r
- */\r
-public interface TlsConfiguration {\r
-\r
-    /**\r
-     * @return keystore location\r
-     */\r
-    public String getTlsKeystore();\r
-    \r
-    /**\r
-     * @return keystore type\r
-     */\r
-    public KeystoreType getTlsKeystoreType();\r
-    \r
-    /**\r
-     * @return truststore location\r
-     */\r
-    public String getTlsTruststore();\r
-    \r
-    /**\r
-     * @return truststore type\r
-     */\r
-    public KeystoreType getTlsTruststoreType();\r
-\r
-    /**\r
-     * @return keystore path type (CLASSPATH or PATH)\r
-     */\r
-    public PathType getTlsKeystorePathType();\r
-\r
-    /**\r
-     * @return truststore path type (CLASSPATH or PATH)\r
-     */\r
-    public PathType getTlsTruststorePathType();\r
-\r
-    /**\r
-     * @return password protecting specified keystore\r
-     */\r
-    public String getKeystorePassword();\r
-\r
-    /**\r
-     * @return password protecting certificate\r
-     */\r
-    public String getCertificatePassword();\r
-\r
-    /**\r
-     * @return password protecting specified truststore\r
-     */\r
-    public String getTruststorePassword();\r
-}\r
+/*
+ * Copyright (c) 2014 Pantheon Technologies s.r.o. and others. All rights reserved.
+ *
+ * This program and the accompanying materials are made available under the
+ * terms of the Eclipse Public License v1.0 which accompanies this distribution,
+ * and is available at http://www.eclipse.org/legal/epl-v10.html
+ */
+
+package org.opendaylight.openflowjava.protocol.api.connection;
+
+import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.config.rev140630.KeystoreType;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.config.rev140630.PathType;
+
+
+/**
+ * @author michal.polkorab
+ *
+ */
+public interface TlsConfiguration {
+
+    /**
+     * @return keystore location
+     */
+    String getTlsKeystore();
+    
+    /**
+     * @return keystore type
+     */
+    KeystoreType getTlsKeystoreType();
+    
+    /**
+     * @return truststore location
+     */
+    String getTlsTruststore();
+    
+    /**
+     * @return truststore type
+     */
+    KeystoreType getTlsTruststoreType();
+
+    /**
+     * @return keystore path type (CLASSPATH or PATH)
+     */
+    PathType getTlsKeystorePathType();
+
+    /**
+     * @return truststore path type (CLASSPATH or PATH)
+     */
+    PathType getTlsTruststorePathType();
+
+    /**
+     * @return password protecting specified keystore
+     */
+    String getKeystorePassword();
+
+    /**
+     * @return password protecting certificate
+     */
+    String getCertificatePassword();
+
+    /**
+     * @return password protecting specified truststore
+     */
+    String getTruststorePassword();
+}