~dhis-mobile-devs/dhis-mobile/2.11

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
package org.hisp.dhis.mobile.model;

import java.io.DataInputStream;
import java.io.DataOutputStream;
import java.io.IOException;
import java.util.Vector;

public class SMSCommand
    implements DataStreamSerializable
{

    private String name;

    private String separator;

    private String codeSeparator;

    private Vector smsCodes;

    private int dataSetId;

    public SMSCommand()
    {
        this.smsCodes = new Vector();
    }

    public String getName()
    {
        return name;
    }

    public void setName( String name )
    {
        this.name = name;
    }

    public String getSeparator()
    {
        return separator;
    }

    public void setSeparator( String separator )
    {
        this.separator = separator;
    }

    public String getCodeSeparator()
    {
        return codeSeparator;
    }

    public void setCodeSeparator( String codeSeparator )
    {
        this.codeSeparator = codeSeparator;
    }

    public Vector getSmsCodes()
    {
        return smsCodes;
    }

    public void setSmsCodes( Vector smsCodes )
    {
        this.smsCodes = smsCodes;
    }

    public int getDataSetId()
    {
        return dataSetId;
    }

    public void setDataSetId( int dataSetId )
    {
        this.dataSetId = dataSetId;
    }

    public void serialize( DataOutputStream dataOutputStream )
        throws IOException
    {
        dataOutputStream.writeUTF( this.name );
        dataOutputStream.writeUTF( this.separator );
        dataOutputStream.writeUTF( this.codeSeparator );
        dataOutputStream.writeInt( this.dataSetId );

        if ( this.smsCodes == null )
        {
            dataOutputStream.writeInt( 0 );
        }
        else
        {
            dataOutputStream.writeInt( smsCodes.size() );
        }

        for ( int i = 0; i < smsCodes.size(); i++ )
        {
            SMSCode smsCode = (SMSCode) smsCodes.elementAt( i );
            smsCode.serialize( dataOutputStream );
        }
    }

    public void deSerialize( DataInputStream dataInputStream )
        throws IOException
    {
        this.setName( dataInputStream.readUTF() );
        this.setSeparator( dataInputStream.readUTF() );
        this.setCodeSeparator( dataInputStream.readUTF() );
        this.setDataSetId( dataInputStream.readInt() );
        int numberOfCode = dataInputStream.readInt();
        for ( int i = 0; i < numberOfCode; i++ )
        {
            SMSCode smsCode = new SMSCode();
            smsCode.deSerialize( dataInputStream );
            smsCodes.addElement( smsCode );
        }

    }

}