Remove MobileTag support -- outdated, unused, and not clear we support the direction...
[zxing.git] / core / src / com / google / zxing / client / result / optional / MobileTagRichWebResultParser.java
diff --git a/core/src/com/google/zxing/client/result/optional/MobileTagRichWebResultParser.java b/core/src/com/google/zxing/client/result/optional/MobileTagRichWebResultParser.java
deleted file mode 100644 (file)
index a016d03..0000000
+++ /dev/null
@@ -1,65 +0,0 @@
-/*
- * Copyright 2008 ZXing authors
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package com.google.zxing.client.result.optional;
-
-import com.google.zxing.BarcodeFormat;
-import com.google.zxing.Result;
-
-/**
- * <p>Represents a "rich web" result encoded according to section 5 of the
- * MobileTag Reader International Specification.</p>
- *
- * @author Sean Owen
- */
-final class MobileTagRichWebResultParser extends AbstractMobileTagResultParser {
-
-  public static final String SERVICE_TYPE = "54";
-
-  private static final int DEFAULT_ACTION = ACTION_DO;
-
-  public static MobileTagRichWebParsedResult parse(Result result) {
-    if (MobileTagRichWebParsedResult.TAGSERVER_URI_PREFIX == null) {
-      return null;
-    }
-    if (!result.getBarcodeFormat().equals(BarcodeFormat.DATAMATRIX)) {
-      return null;
-    }
-    String rawText = result.getText();
-    if (!rawText.startsWith(SERVICE_TYPE)) {
-      return null;
-    }
-
-    int length = rawText.length();
-    if (!isDigits(rawText, length)) {
-      return null;
-    }
-    int action;
-    String id;
-    if (length == 15) {
-      action = DEFAULT_ACTION;
-      id = rawText.substring(0, 2) + action + rawText.substring(2);
-    } else if (length == 16) {
-      action = rawText.charAt(2) - '0';
-      id = rawText;
-    } else {
-      return null;
-    }
-
-    return new MobileTagRichWebParsedResult(id, action);
-  }
-
-}
\ No newline at end of file