Moved code to the com.jdblabs.timestamper.core package and fixed contact information.

This commit is contained in:
Jonathan Bernard 2011-06-16 12:14:22 -05:00
parent 6573503094
commit eef44ecd0c
10 changed files with 18 additions and 18 deletions

View File

@ -1,10 +1,10 @@
package com.jdbernard.timestamper.core;
package com.jdblabs.timestamper.core;
import java.io.IOException;
/**
*
* @author Jonathan Bernard ({@literal jonathan.bernard@gemalto.com})
* @author Jonathan Bernard ({@literal jdbernard@gmail.com})
*/
public class AuthenticationException extends IOException {

View File

@ -1,4 +1,4 @@
package com.jdbernard.timestamper.core;
package com.jdblabs.timestamper.core;
import java.io.File;
import java.io.FileInputStream;
@ -9,7 +9,7 @@ import java.net.URI;
/**
*
* @author Jonathan Bernard ({@literal jonathan.bernard@gemalto.com})
* @author Jonathan Bernard ({@literal jdbernard@gmail.com})
*/
public class FileTimelineSource extends TimelineSource {

View File

@ -1,4 +1,4 @@
package com.jdbernard.timestamper.core;
package com.jdblabs.timestamper.core;
import java.io.ByteArrayOutputStream;
import java.io.FileNotFoundException;
@ -14,7 +14,7 @@ import java.util.Scanner;
/**
*
* @author Jonathan Bernard ({@literal jonathan.bernard@gemalto.com})
* @author Jonathan Bernard ({@literal jdbernard@gmail.com})
*/
public class StreamBasedTimelineSource extends TimelineSource {

View File

@ -1,4 +1,4 @@
package com.jdbernard.timestamper.core;
package com.jdblabs.timestamper.core;
import java.io.IOException;
import java.util.Collection;
@ -7,7 +7,7 @@ import java.util.TimerTask;
/**
* A remote target synchronized against the local timeline.
* @author Jonathan Bernard (jonathan.bernard@gemalto.com)
* @author Jonathan Bernard (jdbernard@gmail.com)
*/
public class SyncTarget {

View File

@ -1,4 +1,4 @@
package com.jdbernard.timestamper.core;
package com.jdblabs.timestamper.core;
import java.text.SimpleDateFormat;

View File

@ -1,4 +1,4 @@
package com.jdbernard.timestamper.core;
package com.jdblabs.timestamper.core;
import java.util.Date;

View File

@ -1,4 +1,4 @@
package com.jdbernard.timestamper.core;
package com.jdblabs.timestamper.core;
import java.io.File;
import java.io.IOException;
@ -37,7 +37,7 @@ import com.jdbernard.util.SmartConfig;
* <tr><td><code>remote.timeline.</code><i>name</i>
* <code>.updateInterval</code></td><td>The time in milliseconds between
* synching the <i>name</i> remote timeline.</td></tr></table>
* @author Jonathan Bernard ({@literal jonathan.bernard@gemalto.com})
* @author Jonathan Bernard ({@literal jdbernard@gmail.com})
* @see com.jdbernard.timestamper.core.Timeline
* @see com.jdbernard.timestamper.core.TimelineSource
* @see com.jdbernard.timestamper.core.SyncTarget

View File

@ -1,11 +1,11 @@
package com.jdbernard.timestamper.core;
package com.jdblabs.timestamper.core;
import java.io.IOException;
import java.net.URI;
/**
* A means of loading and persisting a Timeline.
* @author Jonathan Bernard (jonathan.bernard@gemalto.com)
* @author Jonathan Bernard (jdbernard@gmail.com)
*/
public abstract class TimelineSource {

View File

@ -1,11 +1,11 @@
package com.jdbernard.timestamper.core;
package com.jdblabs.timestamper.core;
import java.io.File;
import java.net.URI;
/**
*
* @author Jonathan Bernard ({@literal jonathan.bernard@gemalto.com})
* @author Jonathan Bernard ({@literal jdbernard@gmail.com})
*/
public class TimelineSourceFactory {

View File

@ -1,11 +1,11 @@
package com.jdbernard.timestamper.core;
package com.jdblabs.timestamper.core;
import java.io.IOException;
import java.net.URI;
/**
*
* @author Jonathan Bernard ({@literal jonathan.bernard@gemalto.com})
* @author Jonathan Bernard ({@literal jdbernard@gmail.com})
*/
public class TwitterTimelineSource extends TimelineSource {