Version bump to 0.8.0

* update to Lombok 1.16.4 and dnsjava 2.1.7
* optimize imports and copyrights
* delete Note data class (will be implemented later)
pull/2/head
Ricki Hirner 9 years ago
parent f3e83922f7
commit bc7e58232e

@ -46,7 +46,7 @@ dependencies {
compile 'commons-lang:commons-lang:2.6'
compile 'commons-io:commons-io:2.4'
// Lombok for useful @helpers
provided 'org.projectlombok:lombok:1.14.8'
provided 'org.projectlombok:lombok:1.16.4'
// ical4j for parsing/generating iCalendars
compile 'org.mnode.ical4j:ical4j:1.0.6'
// ez-vcard for parsing/generating VCards
@ -58,7 +58,7 @@ dependencies {
exclude group: 'com.fasterxml.jackson.core', module: 'jackson-core'
}
// dnsjava for querying SRV/TXT records
compile 'dnsjava:dnsjava:2.1.6'
compile 'dnsjava:dnsjava:2.1.7'
// HttpClient 4.3, Android flavour for WebDAV operations
//compile 'org.apache.httpcomponents:httpclient-android:4.3.5.1'
compile project(':lib:httpclient-android')

@ -1,15 +1,15 @@
/*
* Copyright (c) 2013 2015 Ricki Hirner (bitfire web engineering).
* Copyright © 2013 2015 Ricki Hirner (bitfire web engineering).
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the GNU Public License v3.0
* which accompanies this distribution, and is available at
* http://www.gnu.org/licenses/gpl.html
*/
package at.bitfire.davdroid;
import java.util.Arrays;
import junit.framework.TestCase;
import at.bitfire.davdroid.ArrayUtils;
import java.util.Arrays;
public class ArrayUtilsTest extends TestCase {

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013 2015 Ricki Hirner (bitfire web engineering).
* Copyright © 2013 2015 Ricki Hirner (bitfire web engineering).
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the GNU Public License v3.0
* which accompanies this distribution, and is available at
@ -8,11 +8,11 @@
package at.bitfire.davdroid;
import android.util.Log;
import java.net.URI;
import java.net.URISyntaxException;
import android.util.Log;
public class TestConstants {
public static final String ROBOHYDRA_BASE = "http://192.168.0.11:3000/";

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013 2015 Ricki Hirner (bitfire web engineering).
* Copyright © 2013 2015 Ricki Hirner (bitfire web engineering).
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the GNU Public License v3.0
* which accompanies this distribution, and is available at
@ -7,10 +7,9 @@
*/
package at.bitfire.davdroid;
import java.net.URI;
import junit.framework.TestCase;
import at.bitfire.davdroid.URIUtils;
import java.net.URI;
public class URLUtilsTest extends TestCase {

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013 2015 Ricki Hirner (bitfire web engineering).
* Copyright © 2013 2015 Ricki Hirner (bitfire web engineering).
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the GNU Public License v3.0
* which accompanies this distribution, and is available at

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013 2015 Ricki Hirner (bitfire web engineering).
* Copyright © 2013 2015 Ricki Hirner (bitfire web engineering).
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the GNU Public License v3.0
* which accompanies this distribution, and is available at

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013 2015 Ricki Hirner (bitfire web engineering).
* Copyright © 2013 2015 Ricki Hirner (bitfire web engineering).
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the GNU Public License v3.0
* which accompanies this distribution, and is available at
@ -11,7 +11,6 @@ import android.Manifest;
import android.accounts.Account;
import android.annotation.TargetApi;
import android.content.ContentProviderClient;
import android.content.ContentProviderOperation;
import android.content.ContentUris;
import android.content.ContentValues;
import android.content.Context;
@ -20,10 +19,8 @@ import android.net.Uri;
import android.os.Build;
import android.os.RemoteException;
import android.provider.CalendarContract;
import android.provider.CalendarContract.Attendees;
import android.provider.CalendarContract.Calendars;
import android.provider.CalendarContract.Events;
import android.provider.CalendarContract.Reminders;
import android.test.InstrumentationTestCase;
import android.util.Log;
@ -43,10 +40,7 @@ import java.text.ParseException;
import java.util.ArrayList;
import java.util.Calendar;
import java.util.List;
import java.util.SimpleTimeZone;
import at.bitfire.davdroid.Constants;
import at.bitfire.davdroid.webdav.DavProp;
import lombok.Cleanup;
public class LocalCalendarTest extends InstrumentationTestCase {

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013 2015 Ricki Hirner (bitfire web engineering).
* Copyright © 2013 2015 Ricki Hirner (bitfire web engineering).
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the GNU Public License v3.0
* which accompanies this distribution, and is available at
@ -8,15 +8,16 @@
package at.bitfire.davdroid.syncadapter;
import android.test.InstrumentationTestCase;
import java.io.IOException;
import java.net.URI;
import java.util.List;
import android.test.InstrumentationTestCase;
import at.bitfire.davdroid.TestConstants;
import at.bitfire.davdroid.resource.DavResourceFinder;
import at.bitfire.davdroid.resource.ServerInfo;
import at.bitfire.davdroid.resource.ServerInfo.ResourceInfo;
import at.bitfire.davdroid.TestConstants;
import ezvcard.VCardVersion;
public class DavResourceFinderTest extends InstrumentationTestCase {

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013 2015 Ricki Hirner (bitfire web engineering).
* Copyright © 2013 2015 Ricki Hirner (bitfire web engineering).
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the GNU Public License v3.0
* which accompanies this distribution, and is available at
@ -8,10 +8,8 @@
package at.bitfire.davdroid.webdav;
import java.io.IOException;
import junit.framework.TestCase;
import at.bitfire.davdroid.TestConstants;
import org.apache.http.HttpResponse;
import org.apache.http.client.methods.HttpOptions;
import org.apache.http.client.methods.HttpUriRequest;
@ -20,6 +18,10 @@ import org.apache.http.impl.client.CloseableHttpClient;
import org.apache.http.impl.client.HttpClientBuilder;
import org.apache.http.protocol.HttpContext;
import java.io.IOException;
import at.bitfire.davdroid.TestConstants;
public class DavRedirectStrategyTest extends TestCase {
CloseableHttpClient httpClient;

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013 2015 Ricki Hirner (bitfire web engineering).
* Copyright © 2013 2015 Ricki Hirner (bitfire web engineering).
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the GNU Public License v3.0
* which accompanies this distribution, and is available at
@ -8,23 +8,21 @@
package at.bitfire.davdroid.webdav;
import android.util.Log;
import junit.framework.TestCase;
import org.apache.commons.lang.ArrayUtils;
import org.apache.commons.lang.exception.ExceptionUtils;
import org.apache.http.HttpHost;
import java.io.IOException;
import java.net.InetSocketAddress;
import java.net.Socket;
import java.net.SocketAddress;
import java.security.cert.CertPathValidatorException;
import javax.net.ssl.SSLException;
import javax.net.ssl.SSLHandshakeException;
import javax.net.ssl.SSLPeerUnverifiedException;
import javax.net.ssl.SSLSocket;
import android.util.Log;
import junit.framework.TestCase;
import org.apache.commons.lang.ArrayUtils;
import org.apache.commons.lang.exception.ExceptionUtils;
import org.apache.http.HttpHost;
import lombok.Cleanup;

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013 2015 Ricki Hirner (bitfire web engineering).
* Copyright © 2013 2015 Ricki Hirner (bitfire web engineering).
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the GNU Public License v3.0
* which accompanies this distribution, and is available at
@ -7,24 +7,23 @@
*/
package at.bitfire.davdroid.webdav;
import android.content.res.AssetManager;
import android.test.InstrumentationTestCase;
import org.apache.commons.io.IOUtils;
import org.apache.http.impl.client.CloseableHttpClient;
import java.io.InputStream;
import java.net.URI;
import java.util.Arrays;
import java.util.List;
import javax.net.ssl.SSLPeerUnverifiedException;
import ezvcard.VCardVersion;
import lombok.Cleanup;
import org.apache.commons.io.IOUtils;
import android.content.res.AssetManager;
import android.test.InstrumentationTestCase;
import at.bitfire.davdroid.TestConstants;
import at.bitfire.davdroid.webdav.HttpPropfind.Mode;
import at.bitfire.davdroid.webdav.WebDavResource.PutMode;
import org.apache.http.impl.client.CloseableHttpClient;
import ezvcard.VCardVersion;
import lombok.Cleanup;
// tests require running robohydra!

@ -9,7 +9,7 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="at.bitfire.davdroid"
android:versionCode="66" android:versionName="0.8.0-beta3"
android:versionCode="66" android:versionName="0.8.0"
android:installLocation="internalOnly">
<uses-sdk

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013 2015 Ricki Hirner (bitfire web engineering).
* Copyright © 2013 2015 Ricki Hirner (bitfire web engineering).
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the GNU Public License v3.0
* which accompanies this distribution, and is available at

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013 2015 Ricki Hirner (bitfire web engineering).
* Copyright © 2013 2015 Ricki Hirner (bitfire web engineering).
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the GNU Public License v3.0
* which accompanies this distribution, and is available at
@ -11,7 +11,7 @@ import net.fortuna.ical4j.model.property.ProdId;
public class Constants {
public static final String
APP_VERSION = "0.8.0-beta3",
APP_VERSION = "0.8.0",
ACCOUNT_TYPE = "bitfire.at.davdroid",
WEB_URL_HELP = "https://davdroid.bitfire.at/configuration?pk_campaign=davdroid-app",
WEB_URL_VIEW_LOGS = "https://github.com/bitfireAT/davdroid/wiki/How-to-view-the-logs";

@ -1,3 +1,11 @@
/*
* Copyright © 2013 2015 Ricki Hirner (bitfire web engineering).
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the GNU Public License v3.0
* which accompanies this distribution, and is available at
* http://www.gnu.org/licenses/gpl.html
*/
package at.bitfire.davdroid;
import java.util.regex.Matcher;

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013 2015 Ricki Hirner (bitfire web engineering).
* Copyright © 2013 2015 Ricki Hirner (bitfire web engineering).
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the GNU Public License v3.0
* which accompanies this distribution, and is available at

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013 2015 Ricki Hirner (bitfire web engineering).
* Copyright © 2013 2015 Ricki Hirner (bitfire web engineering).
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the GNU Public License v3.0
* which accompanies this distribution, and is available at

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013 2015 Ricki Hirner (bitfire web engineering).
* Copyright © 2013 2015 Ricki Hirner (bitfire web engineering).
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the GNU Public License v3.0
* which accompanies this distribution, and is available at

@ -1,3 +1,11 @@
/*
* Copyright © 2013 2015 Ricki Hirner (bitfire web engineering).
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the GNU Public License v3.0
* which accompanies this distribution, and is available at
* http://www.gnu.org/licenses/gpl.html
*/
package at.bitfire.davdroid.resource;
import android.util.Log;

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013 2015 Ricki Hirner (bitfire web engineering).
* Copyright © 2013 2015 Ricki Hirner (bitfire web engineering).
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the GNU Public License v3.0
* which accompanies this distribution, and is available at

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013 2015 Ricki Hirner (bitfire web engineering).
* Copyright © 2013 2015 Ricki Hirner (bitfire web engineering).
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the GNU Public License v3.0
* which accompanies this distribution, and is available at

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013 2015 Ricki Hirner (bitfire web engineering).
* Copyright © 2013 2015 Ricki Hirner (bitfire web engineering).
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the GNU Public License v3.0
* which accompanies this distribution, and is available at

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013 2015 Ricki Hirner (bitfire web engineering).
* Copyright © 2013 2015 Ricki Hirner (bitfire web engineering).
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the GNU Public License v3.0
* which accompanies this distribution, and is available at

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013 2015 Ricki Hirner (bitfire web engineering).
* Copyright © 2013 2015 Ricki Hirner (bitfire web engineering).
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the GNU Public License v3.0
* which accompanies this distribution, and is available at

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013 2015 Ricki Hirner (bitfire web engineering).
* Copyright © 2013 2015 Ricki Hirner (bitfire web engineering).
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the GNU Public License v3.0
* which accompanies this distribution, and is available at

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013 2015 Ricki Hirner (bitfire web engineering).
* Copyright © 2013 2015 Ricki Hirner (bitfire web engineering).
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the GNU Public License v3.0
* which accompanies this distribution, and is available at

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013 2015 Ricki Hirner (bitfire web engineering).
* Copyright © 2013 2015 Ricki Hirner (bitfire web engineering).
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the GNU Public License v3.0
* which accompanies this distribution, and is available at

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013 2015 Ricki Hirner (bitfire web engineering).
* Copyright © 2013 2015 Ricki Hirner (bitfire web engineering).
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the GNU Public License v3.0
* which accompanies this distribution, and is available at

@ -1,3 +1,11 @@
/*
* Copyright © 2013 2015 Ricki Hirner (bitfire web engineering).
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the GNU Public License v3.0
* which accompanies this distribution, and is available at
* http://www.gnu.org/licenses/gpl.html
*/
package at.bitfire.davdroid.resource;
import android.accounts.Account;

@ -1,124 +0,0 @@
package at.bitfire.davdroid.resource;
import android.util.Log;
import net.fortuna.ical4j.data.CalendarBuilder;
import net.fortuna.ical4j.data.CalendarOutputter;
import net.fortuna.ical4j.data.ParserException;
import net.fortuna.ical4j.model.Component;
import net.fortuna.ical4j.model.ComponentList;
import net.fortuna.ical4j.model.PropertyList;
import net.fortuna.ical4j.model.ValidationException;
import net.fortuna.ical4j.model.component.VJournal;
import net.fortuna.ical4j.model.component.VToDo;
import net.fortuna.ical4j.model.property.Created;
import net.fortuna.ical4j.model.property.Description;
import net.fortuna.ical4j.model.property.DtStamp;
import net.fortuna.ical4j.model.property.Location;
import net.fortuna.ical4j.model.property.ProdId;
import net.fortuna.ical4j.model.property.Summary;
import net.fortuna.ical4j.model.property.Uid;
import net.fortuna.ical4j.model.property.Version;
import net.fortuna.ical4j.util.SimpleHostInfo;
import net.fortuna.ical4j.util.UidGenerator;
import org.apache.commons.lang.StringUtils;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.io.InputStream;
import at.bitfire.davdroid.Constants;
import at.bitfire.davdroid.syncadapter.DavSyncAdapter;
import lombok.Getter;
import lombok.Setter;
public class Note extends Resource {
private final static String TAG = "davdroid.Note";
@Getter @Setter Created created;
@Getter @Setter String summary, description;
public Note(String name, String ETag) {
super(name, ETag);
}
public Note(long localId, String name, String ETag)
{
super(localId, name, ETag);
}
@Override
public void initialize() {
UidGenerator generator = new UidGenerator(new SimpleHostInfo(DavSyncAdapter.getAndroidID()), String.valueOf(android.os.Process.myPid()));
uid = generator.generateUid().getValue();
name = uid + ".ics";
}
@Override
public void parseEntity(InputStream entity, AssetDownloader downloader) throws IOException, InvalidResourceException {
net.fortuna.ical4j.model.Calendar ical;
try {
CalendarBuilder builder = new CalendarBuilder();
ical = builder.build(entity);
if (ical == null)
throw new InvalidResourceException("No iCalendar found");
} catch (ParserException e) {
throw new InvalidResourceException(e);
}
ComponentList notes = ical.getComponents(Component.VJOURNAL);
if (notes == null || notes.isEmpty())
throw new InvalidResourceException("No VJOURNAL found");
VJournal note = (VJournal)notes.get(0);
if (note.getUid() != null)
uid = note.getUid().getValue();
if (note.getCreated() != null)
created = note.getCreated();
if (note.getSummary() != null)
summary = note.getSummary().getValue();
if (note.getDescription() != null)
description = note.getDescription().getValue();
}
@Override
public String getMimeType() {
return "text/calendar";
}
@Override
public ByteArrayOutputStream toEntity() throws IOException {
final net.fortuna.ical4j.model.Calendar ical = new net.fortuna.ical4j.model.Calendar();
ical.getProperties().add(Version.VERSION_2_0);
ical.getProperties().add(Constants.ICAL_PRODID);
final VJournal note = new VJournal();
ical.getComponents().add(note);
final PropertyList props = note.getProperties();
if (uid != null)
props.add(new Uid(uid));
if (summary != null)
props.add(new Summary(summary));
if (description != null)
props.add(new Description(description));
CalendarOutputter output = new CalendarOutputter(false);
ByteArrayOutputStream os = new ByteArrayOutputStream();
try {
output.output(ical, os);
} catch (ValidationException e) {
Log.e(TAG, "Generated invalid iCalendar");
}
return os;
}
}

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013 2015 Ricki Hirner (bitfire web engineering).
* Copyright © 2013 2015 Ricki Hirner (bitfire web engineering).
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the GNU Public License v3.0
* which accompanies this distribution, and is available at

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013 2015 Ricki Hirner (bitfire web engineering).
* Copyright © 2013 2015 Ricki Hirner (bitfire web engineering).
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the GNU Public License v3.0
* which accompanies this distribution, and is available at

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013 2015 Ricki Hirner (bitfire web engineering).
* Copyright © 2013 2015 Ricki Hirner (bitfire web engineering).
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the GNU Public License v3.0
* which accompanies this distribution, and is available at

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013 2015 Ricki Hirner (bitfire web engineering).
* Copyright © 2013 2015 Ricki Hirner (bitfire web engineering).
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the GNU Public License v3.0
* which accompanies this distribution, and is available at

@ -1,3 +1,11 @@
/*
* Copyright © 2013 2015 Ricki Hirner (bitfire web engineering).
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the GNU Public License v3.0
* which accompanies this distribution, and is available at
* http://www.gnu.org/licenses/gpl.html
*/
package at.bitfire.davdroid.resource;
import android.util.Log;
@ -7,7 +15,6 @@ import net.fortuna.ical4j.data.CalendarOutputter;
import net.fortuna.ical4j.data.ParserException;
import net.fortuna.ical4j.model.Component;
import net.fortuna.ical4j.model.ComponentList;
import net.fortuna.ical4j.model.Date;
import net.fortuna.ical4j.model.DateTime;
import net.fortuna.ical4j.model.PropertyList;
import net.fortuna.ical4j.model.ValidationException;
@ -36,7 +43,6 @@ import java.io.IOException;
import java.io.InputStream;
import java.net.URI;
import java.net.URISyntaxException;
import java.net.URL;
import at.bitfire.davdroid.Constants;
import at.bitfire.davdroid.syncadapter.DavSyncAdapter;

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013 2015 Ricki Hirner (bitfire web engineering).
* Copyright © 2013 2015 Ricki Hirner (bitfire web engineering).
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the GNU Public License v3.0
* which accompanies this distribution, and is available at

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013 2015 Ricki Hirner (bitfire web engineering).
* Copyright © 2013 2015 Ricki Hirner (bitfire web engineering).
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the GNU Public License v3.0
* which accompanies this distribution, and is available at

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013 2015 Ricki Hirner (bitfire web engineering).
* Copyright © 2013 2015 Ricki Hirner (bitfire web engineering).
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the GNU Public License v3.0
* which accompanies this distribution, and is available at

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013 2015 Ricki Hirner (bitfire web engineering).
* Copyright © 2013 2015 Ricki Hirner (bitfire web engineering).
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the GNU Public License v3.0
* which accompanies this distribution, and is available at

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013 2015 Ricki Hirner (bitfire web engineering).
* Copyright © 2013 2015 Ricki Hirner (bitfire web engineering).
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the GNU Public License v3.0
* which accompanies this distribution, and is available at

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013 2015 Ricki Hirner (bitfire web engineering).
* Copyright © 2013 2015 Ricki Hirner (bitfire web engineering).
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the GNU Public License v3.0
* which accompanies this distribution, and is available at

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013 2015 Ricki Hirner (bitfire web engineering).
* Copyright © 2013 2015 Ricki Hirner (bitfire web engineering).
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the GNU Public License v3.0
* which accompanies this distribution, and is available at

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013 2015 Ricki Hirner (bitfire web engineering).
* Copyright © 2013 2015 Ricki Hirner (bitfire web engineering).
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the GNU Public License v3.0
* which accompanies this distribution, and is available at

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013 2015 Ricki Hirner (bitfire web engineering).
* Copyright © 2013 2015 Ricki Hirner (bitfire web engineering).
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the GNU Public License v3.0
* which accompanies this distribution, and is available at

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013 2015 Ricki Hirner (bitfire web engineering).
* Copyright © 2013 2015 Ricki Hirner (bitfire web engineering).
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the GNU Public License v3.0
* which accompanies this distribution, and is available at

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013 2015 Ricki Hirner (bitfire web engineering).
* Copyright © 2013 2015 Ricki Hirner (bitfire web engineering).
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the GNU Public License v3.0
* which accompanies this distribution, and is available at

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013 2015 Ricki Hirner (bitfire web engineering).
* Copyright © 2013 2015 Ricki Hirner (bitfire web engineering).
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the GNU Public License v3.0
* which accompanies this distribution, and is available at

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013 2015 Ricki Hirner (bitfire web engineering).
* Copyright © 2013 2015 Ricki Hirner (bitfire web engineering).
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the GNU Public License v3.0
* which accompanies this distribution, and is available at

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013 2015 Ricki Hirner (bitfire web engineering).
* Copyright © 2013 2015 Ricki Hirner (bitfire web engineering).
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the GNU Public License v3.0
* which accompanies this distribution, and is available at

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013 2015 Ricki Hirner (bitfire web engineering).
* Copyright © 2013 2015 Ricki Hirner (bitfire web engineering).
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the GNU Public License v3.0
* which accompanies this distribution, and is available at

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013 2015 Ricki Hirner (bitfire web engineering).
* Copyright © 2013 2015 Ricki Hirner (bitfire web engineering).
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the GNU Public License v3.0
* which accompanies this distribution, and is available at

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013 2015 Ricki Hirner (bitfire web engineering).
* Copyright © 2013 2015 Ricki Hirner (bitfire web engineering).
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the GNU Public License v3.0
* which accompanies this distribution, and is available at

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013 2015 Ricki Hirner (bitfire web engineering).
* Copyright © 2013 2015 Ricki Hirner (bitfire web engineering).
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the GNU Public License v3.0
* which accompanies this distribution, and is available at

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013 2015 Ricki Hirner (bitfire web engineering).
* Copyright © 2013 2015 Ricki Hirner (bitfire web engineering).
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the GNU Public License v3.0
* which accompanies this distribution, and is available at

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013 2015 Ricki Hirner (bitfire web engineering).
* Copyright © 2013 2015 Ricki Hirner (bitfire web engineering).
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the GNU Public License v3.0
* which accompanies this distribution, and is available at

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013 2015 Ricki Hirner (bitfire web engineering).
* Copyright © 2013 2015 Ricki Hirner (bitfire web engineering).
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the GNU Public License v3.0
* which accompanies this distribution, and is available at

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013 2015 Ricki Hirner (bitfire web engineering).
* Copyright © 2013 2015 Ricki Hirner (bitfire web engineering).
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the GNU Public License v3.0
* which accompanies this distribution, and is available at

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013 2015 Ricki Hirner (bitfire web engineering).
* Copyright © 2013 2015 Ricki Hirner (bitfire web engineering).
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the GNU Public License v3.0
* which accompanies this distribution, and is available at

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013 2015 Ricki Hirner (bitfire web engineering).
* Copyright © 2013 2015 Ricki Hirner (bitfire web engineering).
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the GNU Public License v3.0
* which accompanies this distribution, and is available at

@ -1,3 +1,11 @@
/*
* Copyright © 2013 2015 Ricki Hirner (bitfire web engineering).
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the GNU Public License v3.0
* which accompanies this distribution, and is available at
* http://www.gnu.org/licenses/gpl.html
*/
package at.bitfire.davdroid.webdav;
import org.simpleframework.xml.Element;

@ -1,3 +1,11 @@
/*
* Copyright © 2013 2015 Ricki Hirner (bitfire web engineering).
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the GNU Public License v3.0
* which accompanies this distribution, and is available at
* http://www.gnu.org/licenses/gpl.html
*/
package at.bitfire.davdroid.webdav;
import org.simpleframework.xml.Attribute;

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013 2015 Ricki Hirner (bitfire web engineering).
* Copyright © 2013 2015 Ricki Hirner (bitfire web engineering).
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the GNU Public License v3.0
* which accompanies this distribution, and is available at

@ -1,3 +1,11 @@
/*
* Copyright © 2013 2015 Ricki Hirner (bitfire web engineering).
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the GNU Public License v3.0
* which accompanies this distribution, and is available at
* http://www.gnu.org/licenses/gpl.html
*/
package at.bitfire.davdroid.webdav;
import org.simpleframework.xml.Element;

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013 2015 Ricki Hirner (bitfire web engineering).
* Copyright © 2013 2015 Ricki Hirner (bitfire web engineering).
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the GNU Public License v3.0
* which accompanies this distribution, and is available at

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013 2015 Ricki Hirner (bitfire web engineering).
* Copyright © 2013 2015 Ricki Hirner (bitfire web engineering).
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the GNU Public License v3.0
* which accompanies this distribution, and is available at

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013 2015 Ricki Hirner (bitfire web engineering).
* Copyright © 2013 2015 Ricki Hirner (bitfire web engineering).
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the GNU Public License v3.0
* which accompanies this distribution, and is available at

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013 2015 Ricki Hirner (bitfire web engineering).
* Copyright © 2013 2015 Ricki Hirner (bitfire web engineering).
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the GNU Public License v3.0
* which accompanies this distribution, and is available at

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013 2015 Ricki Hirner (bitfire web engineering).
* Copyright © 2013 2015 Ricki Hirner (bitfire web engineering).
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the GNU Public License v3.0
* which accompanies this distribution, and is available at

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013 2015 Ricki Hirner (bitfire web engineering).
* Copyright © 2013 2015 Ricki Hirner (bitfire web engineering).
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the GNU Public License v3.0
* which accompanies this distribution, and is available at

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013 2015 Ricki Hirner (bitfire web engineering).
* Copyright © 2013 2015 Ricki Hirner (bitfire web engineering).
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the GNU Public License v3.0
* which accompanies this distribution, and is available at

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013 2015 Ricki Hirner (bitfire web engineering).
* Copyright © 2013 2015 Ricki Hirner (bitfire web engineering).
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the GNU Public License v3.0
* which accompanies this distribution, and is available at

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013 2015 Ricki Hirner (bitfire web engineering).
* Copyright © 2013 2015 Ricki Hirner (bitfire web engineering).
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the GNU Public License v3.0
* which accompanies this distribution, and is available at

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013 2015 Ricki Hirner (bitfire web engineering).
* Copyright © 2013 2015 Ricki Hirner (bitfire web engineering).
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the GNU Public License v3.0
* which accompanies this distribution, and is available at

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013 2015 Ricki Hirner (bitfire web engineering).
* Copyright © 2013 2015 Ricki Hirner (bitfire web engineering).
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the GNU Public License v3.0
* which accompanies this distribution, and is available at

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013 2015 Ricki Hirner (bitfire web engineering).
* Copyright © 2013 2015 Ricki Hirner (bitfire web engineering).
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the GNU Public License v3.0
* which accompanies this distribution, and is available at

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013 2015 Ricki Hirner (bitfire web engineering).
* Copyright © 2013 2015 Ricki Hirner (bitfire web engineering).
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the GNU Public License v3.0
* which accompanies this distribution, and is available at

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013 2015 Ricki Hirner (bitfire web engineering).
* Copyright © 2013 2015 Ricki Hirner (bitfire web engineering).
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the GNU Public License v3.0
* which accompanies this distribution, and is available at

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013 2015 Ricki Hirner (bitfire web engineering).
* Copyright © 2013 2015 Ricki Hirner (bitfire web engineering).
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the GNU Public License v3.0
* which accompanies this distribution, and is available at

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013 2015 Ricki Hirner (bitfire web engineering).
* Copyright © 2013 2015 Ricki Hirner (bitfire web engineering).
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the GNU Public License v3.0
* which accompanies this distribution, and is available at

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013 2015 Ricki Hirner (bitfire web engineering).
* Copyright © 2013 2015 Ricki Hirner (bitfire web engineering).
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the GNU Public License v3.0
* which accompanies this distribution, and is available at

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013 2015 Ricki Hirner (bitfire web engineering).
* Copyright © 2013 2015 Ricki Hirner (bitfire web engineering).
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the GNU Public License v3.0
* which accompanies this distribution, and is available at

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013 2015 Ricki Hirner (bitfire web engineering).
* Copyright © 2013 2015 Ricki Hirner (bitfire web engineering).
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the GNU Public License v3.0
* which accompanies this distribution, and is available at

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013 2015 Ricki Hirner (bitfire web engineering).
* Copyright © 2013 2015 Ricki Hirner (bitfire web engineering).
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the GNU Public License v3.0
* which accompanies this distribution, and is available at

@ -1,5 +1,5 @@
/*
* Copyright (c) 2013 2015 Ricki Hirner (bitfire web engineering).
* Copyright © 2013 2015 Ricki Hirner (bitfire web engineering).
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the GNU Public License v3.0
* which accompanies this distribution, and is available at

@ -0,0 +1 @@
lombok.addGeneratedAnnotation = false
Loading…
Cancel
Save