/** * Copyright (c) 2010-2016 by the respective copyright holders. * * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html */ package org.openhab.binding.ihc.ws.datatypes; /** * <p> * Java class for WSSceneShutterSimpleValue complex type. * * <p> * The following schema fragment specifies the expected content contained within * this class. * * <pre> * <complexType name="WSSceneShutterSimpleValue"> * <complexContent> * <extension base="{utcs.values}WSResourceValue"> * <sequence> * <element name="delayTime" type="{http://www.w3.org/2001/XMLSchema}int"/> * <element name="shutterPositionIsUp" type="{http://www.w3.org/2001/XMLSchema}boolean"/> * </sequence> * </extension> * </complexContent> * </complexType> * </pre> * * */ public class WSSceneShutterSimpleValue extends WSResourceValue { protected int delayTime; protected boolean shutterPositionIsUp; /** * Gets the value of the delayTime property. * */ public int getDelayTime() { return delayTime; } /** * Sets the value of the delayTime property. * */ public void setDelayTime(int value) { this.delayTime = value; } /** * Gets the value of the shutterPositionIsUp property. * */ public boolean isShutterPositionIsUp() { return shutterPositionIsUp; } /** * Sets the value of the shutterPositionIsUp property. * */ public void setShutterPositionIsUp(boolean value) { this.shutterPositionIsUp = value; } }