001: /*
002: * $Header: /export/home/cvsroot/MyPersonalizerRepository/MyPersonalizer/Subsystems/Kernel/Sources/es/udc/mypersonalizer/kernel/model/editors/ServiceKeys.java,v 1.1.1.1 2004/03/25 12:08:37 fbellas Exp $
003: * $Revision: 1.1.1.1 $
004: * $Date: 2004/03/25 12:08:37 $
005: *
006: * =============================================================================
007: *
008: * Copyright (c) 2003, The MyPersonalizer Development Group
009: * (http://www.tic.udc.es/~fbellas/mypersonalizer/index.html) at
010: * University Of A Coruna
011: * All rights reserved.
012: *
013: * Redistribution and use in source and binary forms, with or without
014: * modification, are permitted provided that the following conditions are met:
015: *
016: * - Redistributions of source code must retain the above copyright notice,
017: * this list of conditions and the following disclaimer.
018: *
019: * - Redistributions in binary form must reproduce the above copyright notice,
020: * this list of conditions and the following disclaimer in the documentation
021: * and/or other materials provided with the distribution.
022: *
023: * - Neither the name of the University Of A Coruna nor the names of its
024: * contributors may be used to endorse or promote products derived from
025: * this software without specific prior written permission.
026: *
027: * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
028: * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
029: * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
030: * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
031: * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
032: * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
033: * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
034: * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
035: * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
036: * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
037: * POSSIBILITY OF SUCH DAMAGE.
038: *
039: */
040:
041: package es.udc.mypersonalizer.kernel.model.editors;
042:
043: import es.udc.mypersonalizer.kernel.model.repository.interfaces.ServicePropertyKey;
044: import java.io.Serializable;
045:
046: /**
047: * Contains the keys which are relevant for an instance of a service. This
048: * keys are:
049: * <ul>
050: * <li>The <b>ServicePropertyKey</b>, which identifies the property for
051: * this service.</li>.
052: * <li>The <b>ServiceButtonsStateIdentifier</b>, which identifies the
053: * property that models this service's buttons.</li>
054: * </ul>
055: *
056: * @author Daniel Fernandez
057: * @since 1.0
058: */
059: public class ServiceKeys implements Serializable {
060:
061: /** The key that identifies the service property. */
062: private ServicePropertyKey servicePropertyKey;
063:
064: /** The key that identifies the property for the service's buttons. */
065: private Long serviceButtonsStateIdentifier;
066:
067: /**
068: * Creates a new instance of ServiceKeys.
069: *
070: * @param servicePropertyKey Key for the service property.
071: * @param serviceButtonsStateIdentifier Key for the service buttons.
072: */
073: public ServiceKeys(ServicePropertyKey servicePropertyKey,
074: Long serviceButtonsStateIdentifier) {
075:
076: this .servicePropertyKey = servicePropertyKey;
077: this .serviceButtonsStateIdentifier = serviceButtonsStateIdentifier;
078: }
079:
080: /**
081: * Returns the service property identifier.
082: *
083: * @return the service property key
084: */
085: public ServicePropertyKey getServicePropertyKey() {
086:
087: return servicePropertyKey;
088:
089: }
090:
091: /**
092: * Returns the service buttons property identifier.
093: *
094: * @return the service buttons state identifier
095: */
096: public Long getServiceButtonsStateIdentifier() {
097:
098: return serviceButtonsStateIdentifier;
099:
100: }
101:
102: }
|