Big refactoring of ParsedResult: now split into ResultParser and ParsedResult classes...
[zxing.git] / core / src / com / google / zxing / client / result / optional / MobileTagRichWebParsedResult.java
1 /*
2  * Copyright 2008 ZXing authors
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 package com.google.zxing.client.result.optional;
18
19 import com.google.zxing.client.result.ParsedResult;
20 import com.google.zxing.client.result.ParsedResultType;
21
22 /**
23  * @author srowen@google.com (Sean Owen)
24  */
25 public final class MobileTagRichWebParsedResult extends ParsedResult {
26
27   // Example: "http://www.tagserver.com/script.asp?id="
28   static final String TAGSERVER_URI_PREFIX = System.getProperty("zxing.mobiletag.tagserver");
29
30   private final String id;
31   private final int action;
32
33   MobileTagRichWebParsedResult(String id, int action) {
34     super(ParsedResultType.MOBILETAG_RICH_WEB);
35     this.id = id;
36     this.action = action;
37   }
38
39   public static String getTagserverURIPrefix() {
40     return TAGSERVER_URI_PREFIX;
41   }
42
43   public String getId() {
44     return id;
45   }
46
47   public int getAction() {
48     return action;
49   }
50
51   public String getTagserverURI() {
52     return TAGSERVER_URI_PREFIX + id;
53   }
54
55   public String getDisplayResult() {
56     return id;
57   }
58
59 }