~brian-thomason/+junk/ha-jdbc

« back to all changes in this revision

Viewing changes to src/net/sf/hajdbc/distributable/AbstractCommand.java

  • Committer: Brian Thomason
  • Date: 2011-12-20 17:34:21 UTC
  • Revision ID: brian.thomason@canonical.com-20111220173421-p9jg95iq91jgdihh
Initial import

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * HA-JDBC: High-Availability JDBC
 
3
 * Copyright (c) 2004-2007 Paul Ferraro
 
4
 * 
 
5
 * This library is free software; you can redistribute it and/or modify it 
 
6
 * under the terms of the GNU Lesser General Public License as published by the 
 
7
 * Free Software Foundation; either version 2.1 of the License, or (at your 
 
8
 * option) any later version.
 
9
 * 
 
10
 * This library is distributed in the hope that it will be useful, but WITHOUT
 
11
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 
 
12
 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License 
 
13
 * for more details.
 
14
 * 
 
15
 * You should have received a copy of the GNU Lesser General Public License
 
16
 * along with this library; if not, write to the Free Software Foundation, 
 
17
 * Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
 
18
 * 
 
19
 * Contact: ferraro@users.sourceforge.net
 
20
 */
 
21
package net.sf.hajdbc.distributable;
 
22
 
 
23
import java.io.Externalizable;
 
24
import java.io.IOException;
 
25
import java.io.ObjectInput;
 
26
import java.io.ObjectOutput;
 
27
 
 
28
/**
 
29
 * Represents a database command to be executed on a given database cluster.
 
30
 * @author  Paul Ferraro
 
31
 * @since   1.0
 
32
 */
 
33
public abstract class AbstractCommand implements Command<Boolean>, Externalizable
 
34
{
 
35
        protected String databaseId;
 
36
        
 
37
        /**
 
38
         * Constructs a new AbstractDatabaseCommand.
 
39
         */
 
40
        protected AbstractCommand()
 
41
        {
 
42
                // Do nothing
 
43
        }
 
44
        
 
45
        /**
 
46
         * Constructs a new AbstractDatabaseCommand.
 
47
         * @param databaseId a database identifier
 
48
         */
 
49
        public AbstractCommand(String databaseId)
 
50
        {
 
51
                this.databaseId = databaseId;
 
52
        }
 
53
        
 
54
        /**
 
55
         * @see java.io.Externalizable#writeExternal(java.io.ObjectOutput)
 
56
         */
 
57
        @Override
 
58
        public void writeExternal(ObjectOutput output) throws IOException
 
59
        {
 
60
                output.writeUTF(this.databaseId);
 
61
        }
 
62
 
 
63
        /**
 
64
         * @see java.io.Externalizable#readExternal(java.io.ObjectInput)
 
65
         */
 
66
        @Override
 
67
        public void readExternal(ObjectInput input) throws IOException
 
68
        {
 
69
                this.databaseId = input.readUTF();
 
70
        }
 
71
        
 
72
        /**
 
73
         * @see java.lang.Object#toString()
 
74
         */
 
75
        @Override
 
76
        public String toString()
 
77
        {
 
78
                return this.getClass().getName() + " [" + this.databaseId + "]"; //$NON-NLS-1$ //$NON-NLS-2$
 
79
        }
 
80
 
 
81
        /**
 
82
         * @see net.sf.hajdbc.distributable.Command#marshalResult(java.lang.Object)
 
83
         */
 
84
        @Override
 
85
        public Object marshalResult(Boolean result)
 
86
        {
 
87
                return result;
 
88
        }
 
89
 
 
90
        /**
 
91
         * @see net.sf.hajdbc.distributable.Command#unmarshalResult(java.lang.Object)
 
92
         */
 
93
        @Override
 
94
        public Boolean unmarshalResult(Object result)
 
95
        {
 
96
                return (Boolean) result;
 
97
        }
 
98
}