blob: ad1f9d10db51845e0c30add5facff95da75c1e8f [file] [log] [blame]
// Copyright 2009 The Android Open Source Project
package com.google.wireless.gdata2.contacts.data;
import com.google.wireless.gdata2.data.StringUtils;
/**
* Storage for URL of the contact's calendar. The element can be
* repeated.
*/
public class CalendarLink extends ContactsElement {
/** The phone number type. */
public static final byte TYPE_HOME = 1;
public static final byte TYPE_WORK = 2;
public static final byte TYPE_FREE_BUSY = 3;
/**
* default empty constructor
*/
public CalendarLink() {}
private String href;
/**
* The URL of the calendar.
*/
public String getHRef() {
return this.href;
}
/**
* The URL of the calendar.
*/
public void setHRef(String href) {
this.href = href;
}
public void toString(StringBuffer sb) {
sb.append("CalendarLink");
super.toString(sb);
if (!StringUtils.isEmpty(href)) {
sb.append(" href:").append(href);
}
}
}