Deprecate incomplete Glass Mirror now that a Glass device will be available for development of on-device app

This commit is contained in:
Sean Owen 2014-02-06 13:42:25 -05:00
parent 5d5a8e20fc
commit fa6a0af316
12 changed files with 18 additions and 1 deletions

View file

@ -36,9 +36,13 @@ There are also additional modules which are contributed and/or intermittently ma
| Module | Description | Module | Description
| ------------ | ----------- | ------------ | -----------
| actionscript | partial port to Actionscript | actionscript | partial port to Actionscript
| glass-mirror | partial implementation for the Google Glass Mirror API
| jruby | JRuby wrapper | jruby | JRuby wrapper
### Deprecated
| Module | Description
| ------------ | -----------
| glass-mirror | partial implementation for the Google Glass Mirror API
### Available in previous releases ### Available in previous releases

View file

@ -51,6 +51,7 @@ import java.util.Collection;
* @author Sean Owen * @author Sean Owen
* @author Google * @author Google
*/ */
@Deprecated
final class AuthUtil { final class AuthUtil {
private static final Collection<String> SCOPES = private static final Collection<String> SCOPES =

View file

@ -43,6 +43,7 @@ import javax.imageio.ImageIO;
/** /**
* @author Sean Owen * @author Sean Owen
*/ */
@Deprecated
final class DecodeHelper { final class DecodeHelper {
// No real reason to deal with more than maybe 8.3 megapixels // No real reason to deal with more than maybe 8.3 megapixels

View file

@ -62,6 +62,7 @@ import org.slf4j.LoggerFactory;
* @author Sean Owen * @author Sean Owen
* @link https://developers.google.com/glass/develop/mirror/authorization * @link https://developers.google.com/glass/develop/mirror/authorization
*/ */
@Deprecated
public final class NewUserSetupServlet extends HttpServlet { public final class NewUserSetupServlet extends HttpServlet {
private static final Logger log = LoggerFactory.getLogger(NewUserSetupServlet.class); private static final Logger log = LoggerFactory.getLogger(NewUserSetupServlet.class);

View file

@ -36,6 +36,7 @@ import com.google.zxing.client.glass.mirror.MirrorClient;
/** /**
* @author Sean Owen * @author Sean Owen
*/ */
@Deprecated
final class NotificationCallable implements Callable<Void> { final class NotificationCallable implements Callable<Void> {
private final Credential credential; private final Credential credential;

View file

@ -35,6 +35,7 @@ import com.google.api.services.mirror.model.Notification;
* @author Sean Owen * @author Sean Owen
* @link https://developers.google.com/glass/develop/mirror/timeline * @link https://developers.google.com/glass/develop/mirror/timeline
*/ */
@Deprecated
public final class NotificationServlet extends HttpServlet { public final class NotificationServlet extends HttpServlet {
private ExecutorService executor; private ExecutorService executor;

View file

@ -47,6 +47,7 @@ import java.io.IOException;
import java.io.InputStream; import java.io.InputStream;
import java.util.Collection; import java.util.Collection;
@Deprecated
final class GoogleAPIMirrorClient extends MirrorClient { final class GoogleAPIMirrorClient extends MirrorClient {
@Override @Override

View file

@ -29,6 +29,7 @@ import com.google.common.collect.Sets;
import org.slf4j.Logger; import org.slf4j.Logger;
import org.slf4j.LoggerFactory; import org.slf4j.LoggerFactory;
@Deprecated
final class MemoryMirrorClient extends MirrorClient { final class MemoryMirrorClient extends MirrorClient {
private static final Logger log = LoggerFactory.getLogger(MemoryMirrorClient.class); private static final Logger log = LoggerFactory.getLogger(MemoryMirrorClient.class);

View file

@ -25,6 +25,7 @@ import com.google.api.services.mirror.model.Contact;
import com.google.api.services.mirror.model.Subscription; import com.google.api.services.mirror.model.Subscription;
import com.google.api.services.mirror.model.TimelineItem; import com.google.api.services.mirror.model.TimelineItem;
@Deprecated
public abstract class MirrorClient { public abstract class MirrorClient {
private static MirrorClient instance = null; private static MirrorClient instance = null;

View file

@ -27,6 +27,7 @@ import java.util.Collection;
import java.util.Collections; import java.util.Collections;
import java.util.Set; import java.util.Set;
@Deprecated
final class MySQLDataStore<V extends Serializable> extends AbstractDataStore<V> { final class MySQLDataStore<V extends Serializable> extends AbstractDataStore<V> {
MySQLDataStore(DataStoreFactory dataStoreFactory, String id) { MySQLDataStore(DataStoreFactory dataStoreFactory, String id) {

View file

@ -21,6 +21,7 @@ import com.google.api.client.util.store.DataStore;
import java.io.Serializable; import java.io.Serializable;
@Deprecated
final class MySQLDataStoreFactory extends AbstractDataStoreFactory { final class MySQLDataStoreFactory extends AbstractDataStoreFactory {
@Override @Override

View file

@ -78,7 +78,10 @@
<module>android</module> <module>android</module>
<module>androidtest</module> <module>androidtest</module>
--> -->
<!-- Deprecated -->
<!--
<module>glass-mirror</module> <module>glass-mirror</module>
-->
</modules> </modules>
<properties> <properties>