summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlex Clayton <alex.clayton@isode.com>2016-02-26 11:19:56 (GMT)
committerAlex Clayton <alex.clayton@isode.com>2016-03-07 10:58:38 (GMT)
commit8fe752626726ca8d058ce437127a37d5d738a5eb (patch)
treee5e6ed4552cdac9c25101bd4f42f6b1a65a31cfb /src/com/isode/stroke/base
parent16fb1d46d48b46627272275ec46b19f68375e778 (diff)
downloadstroke-8fe752626726ca8d058ce437127a37d5d738a5eb.zip
stroke-8fe752626726ca8d058ce437127a37d5d738a5eb.tar.bz2
Add missing TLS and Base classes
Add missing methods and classes in the TLS and Base packages where possible. In the case of TLSContextFactory the methods could not be implemented in java so added a not saying they are not supported in java. Test-information: Unit tests still build and run ok. Change-Id: I9be2035f092875fcdc02644a3c0082739f26949a
Diffstat (limited to 'src/com/isode/stroke/base')
-rw-r--r--src/com/isode/stroke/base/DateTime.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/com/isode/stroke/base/DateTime.java b/src/com/isode/stroke/base/DateTime.java
index 8a8e31a..4c8310a 100644
--- a/src/com/isode/stroke/base/DateTime.java
+++ b/src/com/isode/stroke/base/DateTime.java
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2014-2015, Isode Limited, London, England.
+ * Copyright (c) 2014-2016, Isode Limited, London, England.
* All rights reserved.
*/
@@ -27,6 +27,6 @@ public class DateTime {
parser.setTimeZone(TimeZone.getTimeZone("UTC"));
return parser.format(date);
}
-
- static private String format = "yyyy-MM-dd'T'HH:mm:ss'Z'";
+
+ static private String format = "yyyy-MM-dd'T'HH:mm:ssXXX";
}