]> git.proxmox.com Git - mirror_edk2.git/blame - Tools/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/far/FarIdentification.java
Enhance Installation, removing and creating FAR functionality.
[mirror_edk2.git] / Tools / Source / FrameworkWizard / src / org / tianocore / frameworkwizard / far / FarIdentification.java
CommitLineData
1898a0c3 1/** @file\r
2 \r
3 The file is used to save information of Far item.\r
4 \r
5 Copyright (c) 2006, Intel Corporation\r
6 All rights reserved. This program and the accompanying materials\r
7 are licensed and made available under the terms and conditions of the BSD License\r
8 which accompanies this distribution. The full text of the license may be found at\r
9 http://opensource.org/licenses/bsd-license.php\r
10 \r
11 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
12 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
13 \r
14 **/\r
5a24e806 15package org.tianocore.frameworkwizard.far;\r
16\r
17public class FarIdentification {\r
18\r
19 private String guid;\r
20\r
21 private String md5Value;\r
22\r
23 private String path;\r
24\r
25 public FarIdentification(String guid, String md5Value, String path) {\r
26 this.guid = guid;\r
27 this.md5Value = md5Value;\r
28 this.path = path;\r
29 }\r
30\r
31 public String getGuid() {\r
32 return guid;\r
33 }\r
34\r
35 public void setGuid(String guid) {\r
36 this.guid = guid;\r
37 }\r
38\r
39 public String getMd5Value() {\r
40 return md5Value;\r
41 }\r
42\r
43 public void setMd5Value(String md5Value) {\r
44 this.md5Value = md5Value;\r
45 }\r
46\r
47 public String getPath() {\r
48 return path;\r
49 }\r
50\r
51 public void setPath(String path) {\r
52 this.path = path;\r
53 }\r
54\r
55 public String toString() {\r
56 return path + " [" + guid + "]";\r
57 }\r
58}\r