- 11 Nov, 2015 1 commit
-
-
Francesco Scoccia authored
Now switchoff betweeen the authentication systems seems to work as intended
-
- 09 Nov, 2015 1 commit
-
-
Francesco Scoccia authored
Added back the JERSEY_LOGGER. Now messages are shown in the UI. Have to find a way to reload the wrapper after that the options have been saved, so that a new wrapper can be used without enforcing reload via the plugins menu
-
- 06 Nov, 2015 1 commit
-
-
Francesco Scoccia authored
Right now, RestAPI plugin provides two option for accessing its endpoints: # Basic authentication: uses username and password of an existing Openfire admin accoount # Secret key: uses for authentication a key defined in the Openfire Admin console. It may be really useful to provide the option to define another Filter as the authentication mechanism to use for accessing the plugin' Rest service given its fully qualified class name.
-
- 03 Nov, 2015 1 commit
-
-
Roman S authored
REST API plugin: make group affiliations per room visible
-
- 02 Nov, 2015 1 commit
-
-
Patrick R. Spendrin authored
This patch shows which groups have one of the affiliations admin|member|owner|outcast. In case the new query parameter expandGroups is set to true, the group member's jids are added to the explicit jids.
-
- 31 Oct, 2015 2 commits
-
-
Christian Schudt authored
These are actually not required by Java compiler and therefore have been removed with dfb69a76, but qdox needs them.
-
akrherz authored
-
- 30 Oct, 2015 19 commits
-
-
daryl herzmann authored
OF-938: Apply packet namespace via string insert
-
Tom Evans authored
This patch fixes a problem introduced by an earlier patch whereby a change to the Packet namespace inadvertently cascaded to child XML elements.
-
Christian Schudt authored
OF-966 <failure> tag not closed for TLS Negotitation Failure
-
akrherz authored
-
Christian Schudt authored
-
Christian Schudt authored
-
Dave Cridland authored
Use StandardCharsets.UTF_8 with Reader/Writer classes.
-
Christian Schudt authored
This is a followup for fcf665a9.
-
Christian Schudt authored
-
Dave Cridland authored
Use real Java enums for presence subscription states.
-
Christian Schudt authored
The homemade IntEnum and Enum classes feel totally weird and confusing, when having java.lang.Enum around. This commit removes these classes. The static constants in the RosterItem class now feel superfluous, but are kept in there, because they are referenced by a lot of other classes and JSP pages.
-
Dave Cridland authored
Use Collections.singleton() where ArrayList has only one element.
-
Dave Cridland authored
Fix PluginClassLoader load resource path issue
-
Dave Cridland authored
Use try-with-resources statement to properly close resources.
-
Dave Cridland authored
Replace deprecated org.jivesoftware.util.Log with org.slf4j.Logger
-
Christian Schudt authored
-
Christian Schudt authored
-
Christian Schudt authored
- Not all resources were closed in finally block (see Launcher, PluginManager, UpdateManager, FaviconServlet, ...) - Get rid of verbose finally blocks and empty catch blocks, which makes the code more readable. - Generally, this is the more modern approach to deal with resources.
-
wmz7year authored
When load plugin resource files old commit will load all resource with / path Like /images/WEB-INF/web.xml old commit is /web.xml should be /images/WEB-INF/web.xml
-
- 29 Oct, 2015 14 commits
-
-
Dave Cridland authored
Deprecate ConcurrentHashSet in favor of Collections.newSetFromMap().
-
Christian Schudt authored
ConcurrentHashSet seems to be a relict from earlier Java times. Since Java 1.6 the preferred method to create a "ConcurrentHashSet" is to use Collections.newSetFromMap(new ConcurrentHashMap<?, ?>())
-
Christian Schudt authored
This has performance benefits. On my machine it's nearly twice as fast.
-
Dave Cridland authored
Add PluginClassLoader plugin loader isolation mechanism
-
Dave Cridland authored
fix getAuditedStartDate resetting startDate to null
-
Dave Cridland authored
Replace Arrays.asList() (with 1 arg) with Collections.singletonList().
-
Dave Cridland authored
Replace StringBuffer with StringBuilder (for performance).
-
Dave Cridland authored
Java Generics: Fix various "unchecked" compiler warnings.
-
Dave Cridland authored
Use Collections.unmodifiableCollection() instead of obsolete Immutabl…
-
Dave Cridland authored
Use integrated AWT SystemTray and TrayIcon classes instead of JDIC.
-
Dave Cridland authored
Make code more readable by using StandardCharsets.UTF_8.
-
Christian Schudt authored
-
Christian Schudt authored
- Use String.getBytes(Charset) instead of String.getBytes(String) - Use new String(byte[], Charset) instead of new String(byte[], String) -> Get rid of UnsupportedEncodingException. -> Less try-catch blocks.
-
Christian Schudt authored
Prefer StringBuilder.append(char) over append(String).
-