Skip to content

Commit 08f30c1

Browse files
author
TanyaEf
committed
Updated ReadMe.md
1 parent e482d07 commit 08f30c1

File tree

3 files changed

+7
-9
lines changed

3 files changed

+7
-9
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -858,7 +858,7 @@ Settings Service
858858
It provides method that allow you to get server specific settings, required by UI to work with the server in sync. There can be formats and patterns, modes for some modules etc.
859859

860860
####Getting server specific settings
861-
To get settings, use the getEntity() method and specify the group of settings in the group() method and class of entity. The method getEntity() returns instance of specified class:
861+
To get settings, use the `getEntity()` method and specify the group of settings in the `group()` method and class of entity as shown below. The method `getEntity()` returns instance of specified class:
862862
```java
863863
final Map settings = session
864864
.settingsService()
@@ -875,7 +875,7 @@ final List settings = session
875875
.group("userTimeZones", List.class)
876876
.getEntity();
877877
```
878-
Supported groups are:
878+
Supported groups of settings are:
879879

880880
1. “request”. Settings related to current AJAX request configuration. Returned settings are: maxInactiveInterval, contextPath;
881881

src/main/java/com/jaspersoft/jasperserver/jaxrs/client/core/RestClientConfiguration.java

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,18 +21,16 @@
2121

2222
package com.jaspersoft.jasperserver.jaxrs.client.core;
2323

24-
import com.sun.org.apache.xpath.internal.operations.Bool;
25-
import org.apache.commons.logging.Log;
26-
import org.apache.commons.logging.LogFactory;
27-
28-
import javax.net.ssl.TrustManager;
29-
import javax.net.ssl.X509TrustManager;
3024
import java.io.InputStream;
3125
import java.security.cert.CertificateException;
3226
import java.security.cert.X509Certificate;
3327
import java.util.Properties;
3428
import java.util.regex.Matcher;
3529
import java.util.regex.Pattern;
30+
import javax.net.ssl.TrustManager;
31+
import javax.net.ssl.X509TrustManager;
32+
import org.apache.commons.logging.Log;
33+
import org.apache.commons.logging.LogFactory;
3634

3735
public class RestClientConfiguration {
3836

src/test/java/com/jaspersoft/jasperserver/jaxrs/client/core/JasperserverRestClientTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ public void should_throw_an_exception_when_pass_null_param_to_the_constructor()
5757
new JasperserverRestClient(null);
5858
}
5959

60-
@Test
60+
@Test(enabled = false)
6161
public void should_return_proper_Session_object() throws Exception {
6262

6363
// Given

0 commit comments

Comments
 (0)