Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
Openfire
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
Openfire
Commits
7d168dac
Commit
7d168dac
authored
Nov 23, 2015
by
Christian Schudt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove methods, which are both deprecated and unused.
parent
82e13c81
Changes
8
Show whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
6 additions
and
157 deletions
+6
-157
DbConnectionManager.java
src/java/org/jivesoftware/database/DbConnectionManager.java
+0
-19
XMPPServerInfo.java
src/java/org/jivesoftware/openfire/XMPPServerInfo.java
+6
-25
GraphicUtils.java
...java/org/jivesoftware/openfire/launcher/GraphicUtils.java
+0
-13
IQMUCSearchHandler.java
...org/jivesoftware/openfire/muc/spi/IQMUCSearchHandler.java
+0
-28
DNSUtil.java
src/java/org/jivesoftware/openfire/net/DNSUtil.java
+0
-24
SASLAuthentication.java
...ava/org/jivesoftware/openfire/net/SASLAuthentication.java
+0
-8
XMPPServerInfoImpl.java
...ava/org/jivesoftware/openfire/spi/XMPPServerInfoImpl.java
+0
-12
CertificateManager.java
src/java/org/jivesoftware/util/CertificateManager.java
+0
-28
No files found.
src/java/org/jivesoftware/database/DbConnectionManager.java
View file @
7d168dac
...
...
@@ -459,25 +459,6 @@ public class DbConnectionManager {
}
}
/**
* Creates a scroll insensitive Statement if the JDBC driver supports it, or a normal
* Statement otherwise.
*
* @param con the database connection.
* @return a Statement
* @throws SQLException if an error occurs.
*/
@Deprecated
public
static
Statement
createScrollableStatement
(
Connection
con
)
throws
SQLException
{
if
(
isScrollResultsSupported
())
{
return
con
.
createStatement
(
ResultSet
.
TYPE_SCROLL_INSENSITIVE
,
ResultSet
.
CONCUR_READ_ONLY
);
}
else
{
return
con
.
createStatement
();
}
}
/**
* Creates a scroll insensitive PreparedStatement if the JDBC driver supports it, or a normal
* PreparedStatement otherwise.
...
...
src/java/org/jivesoftware/openfire/XMPPServerInfo.java
View file @
7d168dac
...
...
@@ -39,33 +39,14 @@ public interface XMPPServerInfo {
*
* @return the version of the server.
*/
public
Version
getVersion
();
/**
* Obtain the server name (IP address or hostname).
*
* @return the server's name as an IP address or host name.
* @deprecated replaced by {@link #getXMPPDomain()}
*/
@Deprecated
public
String
getName
();
/**
* Set the server name (IP address or hostname). The server
* must be restarted for this change to take effect.
*
* @param serverName the server's name as an IP address or host name.
* @deprecated replaced by {@link #setXMPPDomain(String)}
*/
@Deprecated
public
void
setName
(
String
serverName
);
Version
getVersion
();
/**
* Obtain the host name (IP address or hostname) of this server node.
*
* @return the server's host name as an IP address or host name.
*/
public
String
getHostname
();
String
getHostname
();
/**
* Obtain the server XMPP domain name. Note that, if unconfigured, the
...
...
@@ -73,7 +54,7 @@ public interface XMPPServerInfo {
*
* @return the name of the XMPP domain that this server is part of.
*/
public
String
getXMPPDomain
();
String
getXMPPDomain
();
/**
* Set the server XMPP domain name. The server must be
...
...
@@ -82,19 +63,19 @@ public interface XMPPServerInfo {
* @param domainName
* the XMPP domain that this server is part of.
*/
public
void
setXMPPDomain
(
String
domainName
);
void
setXMPPDomain
(
String
domainName
);
/**
* Obtain the date when the server was last started.
*
* @return the date the server was started or null if server has not been started.
*/
public
Date
getLastStarted
();
Date
getLastStarted
();
/**
* Obtain the server ports active on this server.
*
* @return an iterator over the server ports for this server.
*/
public
Collection
<
ServerPort
>
getServerPorts
();
Collection
<
ServerPort
>
getServerPorts
();
}
\ No newline at end of file
src/java/org/jivesoftware/openfire/launcher/GraphicUtils.java
View file @
7d168dac
...
...
@@ -245,19 +245,6 @@ public final class GraphicUtils {
return
false
;
}
/**
* Returns the first component in the tree of <code>c</code> that can accept
* the focus.
*
* @param c the root of the component hierarchy to search
* @see #focusComponentOrChild
* @deprecated replaced by {@link #getFocusableComponentOrChild(Component, boolean)}
*/
@Deprecated
public
static
Component
getFocusableComponentOrChild
(
Component
c
)
{
return
getFocusableComponentOrChild
(
c
,
false
);
}
/**
* Returns the first component in the tree of <code>c</code> that can accept
* the focus.
...
...
src/java/org/jivesoftware/openfire/muc/spi/IQMUCSearchHandler.java
View file @
7d168dac
...
...
@@ -390,32 +390,4 @@ public class IQMUCSearchHandler
}
return
room
.
isPublicRoom
();
}
/**
* Returns the first value from the FormField, or 'null' if no value has
* been set.
*
* @param formField
* The field from which to return the first value.
* @return String based value, or 'null' if the FormField has no values.
* @deprecated replaced by {@link FormField#getFirstValue()}
*/
@Deprecated
public
static
String
getFirstValue
(
FormField
formField
)
{
if
(
formField
==
null
)
{
throw
new
IllegalArgumentException
(
"The argument 'formField' cannot be null."
);
}
List
<
String
>
it
=
formField
.
getValues
();
if
(
it
.
isEmpty
())
{
return
null
;
}
return
it
.
get
(
0
);
}
}
src/java/org/jivesoftware/openfire/net/DNSUtil.java
View file @
7d168dac
...
...
@@ -66,30 +66,6 @@ public class DNSUtil {
}
}
/**
* Returns the host name and port that the specified XMPP server can be
* reached at for server-to-server communication. A DNS lookup for a SRV
* record in the form "_xmpp-server._tcp.example.com" is attempted, according
* to section 14.4 of RFC 3920. If that lookup fails, a lookup in the older form
* of "_jabber._tcp.example.com" is attempted since servers that implement an
* older version of the protocol may be listed using that notation. If that
* lookup fails as well, it's assumed that the XMPP server lives at the
* host resolved by a DNS lookup at the specified domain on the specified default port.<p>
*
* As an example, a lookup for "example.com" may return "im.example.com:5269".
*
* @param domain the domain.
* @param defaultPort default port to return if the DNS look up fails.
* @return a HostAddress, which encompasses the hostname and port that the XMPP
* server can be reached at for the specified domain.
* @deprecated replaced with support for multiple srv records, see
* {@link #resolveXMPPDomain(String, int)}
*/
@Deprecated
public
static
HostAddress
resolveXMPPServerDomain
(
String
domain
,
int
defaultPort
)
{
return
resolveXMPPDomain
(
domain
,
defaultPort
).
get
(
0
);
}
/**
* Returns a sorted list of host names and ports that the specified XMPP domain
* can be reached at for server-to-server communication. A DNS lookup for a SRV
...
...
src/java/org/jivesoftware/openfire/net/SASLAuthentication.java
View file @
7d168dac
...
...
@@ -644,14 +644,6 @@ public class SASLAuthentication {
return
false
;
}
/**
* @deprecated Use {@link #verifyCertificates(Certificate[], String, boolean)} instead.
*/
@Deprecated
public
static
boolean
verifyCertificates
(
Certificate
[]
chain
,
String
hostname
)
{
return
verifyCertificates
(
chain
,
hostname
,
true
);
}
public
static
boolean
verifyCertificates
(
Certificate
[]
chain
,
String
hostname
,
boolean
isS2S
)
{
final
KeyStore
keyStore
=
SSLConfig
.
getStore
(
Purpose
.
SOCKETBASED_IDENTITYSTORE
);
final
KeyStore
trustStore
=
SSLConfig
.
getStore
(
isS2S
?
Purpose
.
SOCKETBASED_S2S_TRUSTSTORE
:
Purpose
.
SOCKETBASED_C2S_TRUSTSTORE
);
...
...
src/java/org/jivesoftware/openfire/spi/XMPPServerInfoImpl.java
View file @
7d168dac
...
...
@@ -66,18 +66,6 @@ public class XMPPServerInfoImpl implements XMPPServerInfo {
return
ver
;
}
@Override
@Deprecated
public
String
getName
()
{
return
getXMPPDomain
();
}
@Override
@Deprecated
public
void
setName
(
String
serverName
)
{
setXMPPDomain
(
serverName
);
}
@Override
public
String
getHostname
()
{
...
...
src/java/org/jivesoftware/util/CertificateManager.java
View file @
7d168dac
...
...
@@ -62,7 +62,6 @@ import org.bouncycastle.openssl.jcajce.JcaPEMKeyConverter;
import
org.bouncycastle.openssl.jcajce.JcePEMDecryptorProviderBuilder
;
import
org.bouncycastle.x509.X509V3CertificateGenerator
;
import
org.jivesoftware.openfire.keystore.CertificateStoreConfig
;
import
org.jivesoftware.openfire.keystore.CertificateStoreConfigException
;
import
org.jivesoftware.util.cert.CertificateIdentityMapping
;
import
org.jivesoftware.util.cert.CNCertificateIdentityMapping
;
import
org.jivesoftware.util.cert.SANCertificateIdentityMapping
;
...
...
@@ -143,33 +142,6 @@ public class CertificateManager {
}
}
/**
* @Deprecated Use {@link CertificateStoreConfig#delete(String)} instead.
*/
@Deprecated
public
static
void
deleteCertificate
(
CertificateStoreConfig
storeConfig
,
String
alias
)
throws
GeneralSecurityException
,
IOException
,
CertificateStoreConfigException
{
final
KeyStore
store
=
storeConfig
.
getStore
();
if
(!
store
.
containsAlias
(
alias
)
)
{
Log
.
info
(
"Unable to delete certificate for alias '"
+
alias
+
"' from store, as the store does not contain a certificate for that alias."
);
return
;
}
storeConfig
.
getStore
().
deleteEntry
(
alias
);
storeConfig
.
persist
();
// Notify listeners that a new certificate has been removed.
for
(
CertificateEventListener
listener
:
listeners
)
{
try
{
listener
.
certificateDeleted
(
store
,
alias
);
}
catch
(
Exception
e
)
{
Log
.
warn
(
"An exception occurred while notifying CertificateEventListener "
+
listener
,
e
);
}
}
}
/**
* Decide whether or not to trust the given supplied certificate chain, returning the
* End Entity Certificate in this case where it can, and null otherwise.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment