htiextension/com.nokia.s60tools.hticonnection/src/com/nokia/s60tools/hticonnection/core/RequestResult.java
author dpodwall
Tue, 12 Jan 2010 13:17:53 -0600
changeset 0 61163b28edca
permissions -rw-r--r--
initial EPL conversion
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
0
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
     1
/*
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
     2
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). 
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
     3
* All rights reserved.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
     4
* This component and the accompanying materials are made available
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
     5
* under the terms of "Eclipse Public License v1.0"
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
     6
* which accompanies this distribution, and is available
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
     7
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
     8
*
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
     9
* Initial Contributors:
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    10
* Nokia Corporation - initial contribution.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    11
*
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    12
* Contributors:
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    13
*
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    14
* Description:
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    15
*
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    16
*/
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    17
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    18
package com.nokia.s60tools.hticonnection.core;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    19
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    20
import java.util.List;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    21
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    22
import com.nokia.HTI.HTIMessage;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    23
import com.nokia.HTI.ApplicationControlService.AppStatus;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    24
import com.nokia.s60tools.hticonnection.services.DriveInfo;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    25
import com.nokia.s60tools.hticonnection.services.FileInfo;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    26
import com.nokia.s60tools.hticonnection.services.HTIScreenMode;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    27
import com.nokia.s60tools.hticonnection.services.HTIVersion;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    28
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    29
/**
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    30
 * Class to contain result of request. 
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    31
 */
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    32
public class RequestResult {
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    33
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    34
	// Data for the request result.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    35
	private byte[] byteData = null;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    36
	private boolean booleanData;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    37
	private String[] stringArrayData = null;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    38
	private String stringData = null;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    39
	private HTIMessage htiMessage = null;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    40
	private List<String> listData = null;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    41
	private AppStatus appStatus = null;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    42
	private HTIScreenMode screenMode = null;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    43
	private DriveInfo[] driveInfoData = null;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    44
	private HTIVersion versionData = null;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    45
	private FileInfo[] fileInfoData = null;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    46
	
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    47
	//
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    48
	// Constructors.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    49
	//
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    50
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    51
	/**
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    52
	 * Constructor for byte data.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    53
	 * @param byteData Data as bytes.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    54
	 */
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    55
	public RequestResult(byte[] byteData){
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    56
		this.byteData = byteData;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    57
	}
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    58
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    59
	/**
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    60
	 * Constructor for boolean data.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    61
	 * @param booleanData Boolean value..
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    62
	 */
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    63
	public RequestResult(boolean booleanData){
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    64
		this.booleanData = booleanData;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    65
	}
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    66
	
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    67
	/**
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    68
	 * Constructor for String array data.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    69
	 * @param stringData Data as String array.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    70
	 */
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    71
	public RequestResult(String[] stringData){
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    72
		this.stringArrayData = stringData;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    73
	}
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    74
	
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    75
	/**
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    76
	 * Constructor for String data.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    77
	 * @param stringData Data as String.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    78
	 */
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    79
	public RequestResult(String stringData){
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    80
		this.stringData = stringData;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    81
	}
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    82
	
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    83
	/**
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    84
	 * Constructor for HTIMessage.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    85
	 * @param htiMessage Result as HTIMessage.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    86
	 */
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    87
	public RequestResult(HTIMessage htiMessage){
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    88
		this.htiMessage = htiMessage;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    89
	}
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    90
	
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    91
	/**
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    92
	 * Constructor for List.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    93
	 * @param listData Result as List.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    94
	 */
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    95
	public RequestResult(List<String> listData){
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    96
		this.listData = listData;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    97
	}
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    98
	
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    99
	/**
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   100
	 * Constructor for AppStatus.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   101
	 * @param appStatus Application status.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   102
	 */
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   103
	public RequestResult(AppStatus appStatus){
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   104
		this.appStatus = appStatus;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   105
	}
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   106
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   107
	/**
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   108
	 * Constructor for screen mode.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   109
	 * @param screen mode Result as HTIScreenMode.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   110
	 */
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   111
	public RequestResult(HTIScreenMode screenMode){
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   112
		this.screenMode = screenMode;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   113
	}
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   114
	
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   115
	/**
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   116
	 * Constructor for DriveInfo array data.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   117
	 * @param driveInfoData Data as DriveInfo array.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   118
	 */
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   119
	public RequestResult(DriveInfo[] driveInfoData){
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   120
		this.driveInfoData = driveInfoData;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   121
	}
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   122
	
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   123
	/**
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   124
	 * Constructor for version data.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   125
	 * @param versionData Data as HTIVersion.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   126
	 */
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   127
	public RequestResult(HTIVersion versionData){
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   128
		this.versionData = versionData;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   129
	}
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   130
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   131
	/**
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   132
	 * Constructor for FileInfo array data.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   133
	 * @param versionData Data as FileInfo array.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   134
	 */
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   135
	public RequestResult(FileInfo[] fileInfoData){
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   136
		this.fileInfoData = fileInfoData;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   137
	}
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   138
	
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   139
	//
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   140
	// Getters.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   141
	//
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   142
	
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   143
	/**
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   144
	 * Method to get byte data result.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   145
	 * @return Data as bytes or null, if there is no byte data.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   146
	 */
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   147
	public byte[] getByteData(){
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   148
		return byteData ;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   149
	}
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   150
	
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   151
	/**
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   152
	 * Method to get boolean data result.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   153
	 * @return Datavalue.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   154
	 */
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   155
	public boolean getBooleanData(){
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   156
		return booleanData ;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   157
	}
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   158
	
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   159
	/**
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   160
	 * Method to get String array data result.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   161
	 * @return Data as String array or null, if there is no String array data.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   162
	 */
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   163
	public String[] getStringArrayData(){
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   164
		return stringArrayData ;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   165
	}
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   166
	
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   167
	/**
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   168
	 * Method to get String data result.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   169
	 * @return Data as String or null, if there is no String data.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   170
	 */
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   171
	public String getStringData(){
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   172
		return stringData ;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   173
	}
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   174
	
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   175
	/**
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   176
	 * Method to get HTIMessage result.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   177
	 * @return Data as HTIMessage or null, if there is no result.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   178
	 */
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   179
	public HTIMessage getHTIMessage(){
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   180
		return htiMessage ;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   181
	}
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   182
	
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   183
	/**
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   184
	 * Method to get List result.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   185
	 * @return Data as List or null, if there is no result.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   186
	 */
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   187
	public List<String> getListData(){
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   188
		return listData ;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   189
	}
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   190
	
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   191
	/**
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   192
	 * Method to get AppStatus result.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   193
	 * @return Data as AppStatus or null, if there is no result.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   194
	 */
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   195
	public AppStatus getAppStatus(){
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   196
		return appStatus ;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   197
	}
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   198
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   199
	/**
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   200
	 * Method to get screen mode result.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   201
	 * @return Data as HTIScreenMode or null, if there is no result.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   202
	 */
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   203
	public HTIScreenMode getScreenMode() {
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   204
		return screenMode;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   205
	}
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   206
	
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   207
	/**
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   208
	 * Method to get DriveInfo array data result.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   209
	 * @return Data as DriveInfo array or null, if there is no DriveInfo array data.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   210
	 */
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   211
	public DriveInfo[] getDriveInfoArrayData(){
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   212
		return driveInfoData ;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   213
	}
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   214
	
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   215
	/**
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   216
	 * Method to get HTIVersion data result.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   217
	 * @return Data as HTIVersion or null, if there is no HTIVersion data.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   218
	 */
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   219
	public HTIVersion getHTIVersionData(){
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   220
		return versionData ;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   221
	}
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   222
	
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   223
	/**
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   224
	 * Method to get FileInfo array data result.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   225
	 * @return Data as FileInfo array or null, if there is no FileInfo array data.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   226
	 */
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   227
	public FileInfo[] getFileInfoArrayData() {
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   228
		return fileInfoData;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   229
	}
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   230
}