001/*
002 * Copyright 2010-2013 Ning, Inc.
003 *
004 * Ning licenses this file to you under the Apache License, version 2.0
005 * (the "License"); you may not use this file except in compliance with the
006 * License.  You may obtain a copy of the License at:
007 *
008 *    http://www.apache.org/licenses/LICENSE-2.0
009 *
010 * Unless required by applicable law or agreed to in writing, software
011 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
012 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  See the
013 * License for the specific language governing permissions and limitations
014 * under the License.
015 */
016
017package com.ning.billing.recurly.model.push.account;
018
019import javax.xml.bind.annotation.XmlElement;
020
021import com.ning.billing.recurly.model.Account;
022import com.ning.billing.recurly.model.push.Notification;
023
024public abstract class AccountNotification extends Notification {
025
026    @XmlElement(name = "account")
027    private Account account;
028
029    public Account getAccount() {
030        return account;
031    }
032
033    public void setAccount(final Account account) {
034        this.account = account;
035    }
036}