Moved code to the com.jdblabs.timestamper.core package and fixed contact information.
This commit is contained in:
parent
6573503094
commit
eef44ecd0c
@ -1,10 +1,10 @@
|
|||||||
package com.jdbernard.timestamper.core;
|
package com.jdblabs.timestamper.core;
|
||||||
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* @author Jonathan Bernard ({@literal jonathan.bernard@gemalto.com})
|
* @author Jonathan Bernard ({@literal jdbernard@gmail.com})
|
||||||
*/
|
*/
|
||||||
public class AuthenticationException extends IOException {
|
public class AuthenticationException extends IOException {
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
package com.jdbernard.timestamper.core;
|
package com.jdblabs.timestamper.core;
|
||||||
|
|
||||||
import java.io.File;
|
import java.io.File;
|
||||||
import java.io.FileInputStream;
|
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 {
|
public class FileTimelineSource extends TimelineSource {
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
package com.jdbernard.timestamper.core;
|
package com.jdblabs.timestamper.core;
|
||||||
|
|
||||||
import java.io.ByteArrayOutputStream;
|
import java.io.ByteArrayOutputStream;
|
||||||
import java.io.FileNotFoundException;
|
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 {
|
public class StreamBasedTimelineSource extends TimelineSource {
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
package com.jdbernard.timestamper.core;
|
package com.jdblabs.timestamper.core;
|
||||||
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.util.Collection;
|
import java.util.Collection;
|
||||||
@ -7,7 +7,7 @@ import java.util.TimerTask;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* A remote target synchronized against the local timeline.
|
* A remote target synchronized against the local timeline.
|
||||||
* @author Jonathan Bernard (jonathan.bernard@gemalto.com)
|
* @author Jonathan Bernard (jdbernard@gmail.com)
|
||||||
*/
|
*/
|
||||||
public class SyncTarget {
|
public class SyncTarget {
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
package com.jdbernard.timestamper.core;
|
package com.jdblabs.timestamper.core;
|
||||||
|
|
||||||
import java.text.SimpleDateFormat;
|
import java.text.SimpleDateFormat;
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
package com.jdbernard.timestamper.core;
|
package com.jdblabs.timestamper.core;
|
||||||
|
|
||||||
import java.util.Date;
|
import java.util.Date;
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
package com.jdbernard.timestamper.core;
|
package com.jdblabs.timestamper.core;
|
||||||
|
|
||||||
import java.io.File;
|
import java.io.File;
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
@ -37,7 +37,7 @@ import com.jdbernard.util.SmartConfig;
|
|||||||
* <tr><td><code>remote.timeline.</code><i>name</i>
|
* <tr><td><code>remote.timeline.</code><i>name</i>
|
||||||
* <code>.updateInterval</code></td><td>The time in milliseconds between
|
* <code>.updateInterval</code></td><td>The time in milliseconds between
|
||||||
* synching the <i>name</i> remote timeline.</td></tr></table>
|
* 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.Timeline
|
||||||
* @see com.jdbernard.timestamper.core.TimelineSource
|
* @see com.jdbernard.timestamper.core.TimelineSource
|
||||||
* @see com.jdbernard.timestamper.core.SyncTarget
|
* @see com.jdbernard.timestamper.core.SyncTarget
|
||||||
|
@ -1,11 +1,11 @@
|
|||||||
package com.jdbernard.timestamper.core;
|
package com.jdblabs.timestamper.core;
|
||||||
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.net.URI;
|
import java.net.URI;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A means of loading and persisting a Timeline.
|
* 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 {
|
public abstract class TimelineSource {
|
||||||
|
|
||||||
|
@ -1,11 +1,11 @@
|
|||||||
package com.jdbernard.timestamper.core;
|
package com.jdblabs.timestamper.core;
|
||||||
|
|
||||||
import java.io.File;
|
import java.io.File;
|
||||||
import java.net.URI;
|
import java.net.URI;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* @author Jonathan Bernard ({@literal jonathan.bernard@gemalto.com})
|
* @author Jonathan Bernard ({@literal jdbernard@gmail.com})
|
||||||
*/
|
*/
|
||||||
public class TimelineSourceFactory {
|
public class TimelineSourceFactory {
|
||||||
|
|
||||||
|
@ -1,11 +1,11 @@
|
|||||||
package com.jdbernard.timestamper.core;
|
package com.jdblabs.timestamper.core;
|
||||||
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.net.URI;
|
import java.net.URI;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* @author Jonathan Bernard ({@literal jonathan.bernard@gemalto.com})
|
* @author Jonathan Bernard ({@literal jdbernard@gmail.com})
|
||||||
*/
|
*/
|
||||||
public class TwitterTimelineSource extends TimelineSource {
|
public class TwitterTimelineSource extends TimelineSource {
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user