001 002/* 003 * Copyright (C) 2011 Archie L. Cobbs. All rights reserved. 004 * 005 * $Id$ 006 */ 007 008package org.dellroad.jibxbindings.twilio.restapi; 009 010/** 011 * Abstract superclass for XML represenations of REST resources associated with a specific account 012 * and which are uniquely identified via a <code><Sid></code> element. 013 */ 014public abstract class SidAccountResource extends AccountResource { 015 016 private String sid; 017 018 /** 019 * Get the unique string that identifies this resource. 020 */ 021 public String getSid() { 022 return this.sid; 023 } 024 public void setSid(String sid) { 025 this.sid = sid; 026 } 027} 028