Source code: com/flexstor/common/importprocessor/ImportResult.java
1 /*
2 * ImportResult.java
3 *
4 * Copyright $Date: 2003/08/11 02:22:37 $ FLEXSTOR.net Inc.
5 *
6 * This work is licensed for use and distribution under license terms found at
7 * http://www.flexstor.org/license.html
8 *
9 */
10
11 package com.flexstor.common.importprocessor;
12
13 import com.flexstor.common.data.ActionResult;
14
15 public class ImportResult
16 extends ActionResult
17 {
18 private String sAssetsType; // For Getting the type of assets in ImportAssetService
19
20 public ImportResult(boolean bValue)
21 {
22 super(bValue);
23 }
24
25 public void setImportData(ImportData importData)
26 {
27 super.setData( importData );
28 }
29
30 public ImportData getImportData()
31 {
32 return (ImportData) super.getData();
33 }
34
35 public void setAssetsType( String sAssetsType )
36 {
37 this.sAssetsType = sAssetsType;
38 }
39
40 public String getAssetsType()
41 {
42 return sAssetsType;
43 }
44 }