mirror of
https://github.com/moparisthebest/davmail
synced 2025-01-08 04:08:12 -05:00
Fixes from audit
git-svn-id: http://svn.code.sf.net/p/davmail/code/trunk@1915 3d1905a2-6b24-0410-a738-b14d5a86fcbd
This commit is contained in:
parent
268a713446
commit
ad94b01356
@ -37,13 +37,13 @@ import java.util.Map;
|
|||||||
public class ExchangePropFindMethod extends ExchangeDavMethod {
|
public class ExchangePropFindMethod extends ExchangeDavMethod {
|
||||||
protected static final Logger LOGGER = Logger.getLogger(ExchangePropFindMethod.class);
|
protected static final Logger LOGGER = Logger.getLogger(ExchangePropFindMethod.class);
|
||||||
|
|
||||||
protected DavPropertyNameSet propertyNameSet;
|
protected final DavPropertyNameSet propertyNameSet;
|
||||||
|
|
||||||
public ExchangePropFindMethod(String uri) throws IOException {
|
public ExchangePropFindMethod(String uri) {
|
||||||
this(uri, null, DepthHeader.DEPTH_INFINITY);
|
this(uri, null, DepthHeader.DEPTH_INFINITY);
|
||||||
}
|
}
|
||||||
|
|
||||||
public ExchangePropFindMethod(String uri, DavPropertyNameSet propertyNameSet, int depth) throws IOException {
|
public ExchangePropFindMethod(String uri, DavPropertyNameSet propertyNameSet, int depth) {
|
||||||
super(uri);
|
super(uri);
|
||||||
this.propertyNameSet = propertyNameSet;
|
this.propertyNameSet = propertyNameSet;
|
||||||
DepthHeader dh = new DepthHeader(depth);
|
DepthHeader dh = new DepthHeader(depth);
|
||||||
|
@ -38,9 +38,9 @@ import java.util.Map;
|
|||||||
public class ExchangeSearchMethod extends ExchangeDavMethod {
|
public class ExchangeSearchMethod extends ExchangeDavMethod {
|
||||||
protected static final Logger LOGGER = Logger.getLogger(ExchangeSearchMethod.class);
|
protected static final Logger LOGGER = Logger.getLogger(ExchangeSearchMethod.class);
|
||||||
|
|
||||||
protected String searchRequest;
|
protected final String searchRequest;
|
||||||
|
|
||||||
public ExchangeSearchMethod(String uri, String searchRequest) throws IOException {
|
public ExchangeSearchMethod(String uri, String searchRequest) {
|
||||||
super(uri);
|
super(uri);
|
||||||
this.searchRequest = searchRequest;
|
this.searchRequest = searchRequest;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user