001
002/*
003 * Copyright (C) 2011 Archie L. Cobbs. All rights reserved.
004 *
005 * $Id$
006 */
007
008package org.dellroad.jibxbindings.twilio.twiml;
009
010/**
011 * TwiML <code>&lt;Pause&gt;</code> verb.
012 */
013public class Pause implements GatherVerb {
014
015    public static final int DEFAULT_LENGTH = 1;
016
017    private int length = DEFAULT_LENGTH;
018
019    public int getLength() {
020        return this.length;
021    }
022    public void setLength(int length) {
023        this.length = length;
024    }
025}
026