aboutsummaryrefslogtreecommitdiffstats
path: root/src/net/java/sip/communicator/service/certificate/KeyStoreType.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/java/sip/communicator/service/certificate/KeyStoreType.java')
-rw-r--r--src/net/java/sip/communicator/service/certificate/KeyStoreType.java124
1 files changed, 62 insertions, 62 deletions
diff --git a/src/net/java/sip/communicator/service/certificate/KeyStoreType.java b/src/net/java/sip/communicator/service/certificate/KeyStoreType.java
index ba1fd72..16927d8 100644
--- a/src/net/java/sip/communicator/service/certificate/KeyStoreType.java
+++ b/src/net/java/sip/communicator/service/certificate/KeyStoreType.java
@@ -1,4 +1,4 @@
-/*
+/*
* Jitsi, the OpenSource Java VoIP and Instant Messaging client.
*
* Copyright @ 2015 Atlassian Pty Ltd
@@ -15,65 +15,65 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-package net.java.sip.communicator.service.certificate;
-
-/**
- * Data object for KeyStore configurations. Primarily used during adding/
- * editing client certificate configurations.
- *
- * @author Ingo Bauersachs
- */
-public class KeyStoreType
-{
- private String name;
- private String[] fileExtensions;
- private boolean hasKeyStorePassword;
-
- /**
- * Creates a new instance of this class.
- * @param name the display name of the keystore type.
- * @param fileExtensions known file name extensions (including the dot)
- * @param hasKeyStorePassword
- */
- public KeyStoreType(String name, String[] fileExtensions,
- boolean hasKeyStorePassword)
- {
- this.name = name;
- this.fileExtensions = fileExtensions;
- this.hasKeyStorePassword = hasKeyStorePassword;
- }
-
- @Override
- public String toString()
- {
- return name;
- }
-
- /**
- * Gets the display name.
- * @return the display name.
- */
- public String getName()
- {
- return name;
- }
-
- /**
- * Gets the known file name extensions.
- * @return Known file name extensions (including the dot).
- */
- public String[] getFileExtensions()
- {
- return fileExtensions;
- }
-
- /**
- * Flag that indicates if the keystore supports passwords.
- * @return <tt>true</tt> if the keystore supports passwords, <tt>false</tt>
- * otherwise.
- */
- public boolean hasKeyStorePassword()
- {
- return hasKeyStorePassword;
- }
+package net.java.sip.communicator.service.certificate;
+
+/**
+ * Data object for KeyStore configurations. Primarily used during adding/
+ * editing client certificate configurations.
+ *
+ * @author Ingo Bauersachs
+ */
+public class KeyStoreType
+{
+ private String name;
+ private String[] fileExtensions;
+ private boolean hasKeyStorePassword;
+
+ /**
+ * Creates a new instance of this class.
+ * @param name the display name of the keystore type.
+ * @param fileExtensions known file name extensions (including the dot)
+ * @param hasKeyStorePassword
+ */
+ public KeyStoreType(String name, String[] fileExtensions,
+ boolean hasKeyStorePassword)
+ {
+ this.name = name;
+ this.fileExtensions = fileExtensions;
+ this.hasKeyStorePassword = hasKeyStorePassword;
+ }
+
+ @Override
+ public String toString()
+ {
+ return name;
+ }
+
+ /**
+ * Gets the display name.
+ * @return the display name.
+ */
+ public String getName()
+ {
+ return name;
+ }
+
+ /**
+ * Gets the known file name extensions.
+ * @return Known file name extensions (including the dot).
+ */
+ public String[] getFileExtensions()
+ {
+ return fileExtensions;
+ }
+
+ /**
+ * Flag that indicates if the keystore supports passwords.
+ * @return <tt>true</tt> if the keystore supports passwords, <tt>false</tt>
+ * otherwise.
+ */
+ public boolean hasKeyStorePassword()
+ {
+ return hasKeyStorePassword;
+ }
}