⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 baseentry.java

📁 google的gdata api包
💻 JAVA
📖 第 1 页 / 共 2 页
字号:
/* Copyright (c) 2006 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * *     http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */package com.google.gdata.data;import com.google.gdata.util.common.xml.XmlWriter;import com.google.gdata.util.common.xml.XmlWriter.Attribute;import com.google.gdata.client.Service;import com.google.gdata.util.Namespaces;import com.google.gdata.util.NotModifiedException;import com.google.gdata.util.ParseException;import com.google.gdata.util.ServiceException;import com.google.gdata.util.XmlParser;import org.xml.sax.Attributes;import java.io.IOException;import java.io.InputStream;import java.io.Reader;import java.net.URL;import java.util.ArrayList;import java.util.Collection;import java.util.HashSet;import java.util.LinkedList;import java.util.List;import java.util.Set;import java.util.Vector;/** * The BaseEntry class is an abstract base class that defines the * in-memory object model for GData entries. * <p> * It is capable of parsing the Atom XML for an {@code <atom:entry>} * element as well as any contained Extension elements.  It can generate * both Atom and RSS 2.0 representations of the entry from the object * model. * <p> * The BaseEntry class implements the {@link Kind.Adaptable} interface, meaning * it is possible to create new {@link Kind.Adaptor} subtypes that defines * a custom extension model (and associated convience APIs) for a BaseEntry * subtypes that use Atom/RSS extensions to extend the content model for a * particular type of data. * <p> * An {@link Kind.Adaptor} subclass of BaseEntry should do the following: * <ul> * <li>Include a {@link Kind.Term} annotation on the class declaration that * defines the {@link Category} term value for the GData kind handled by the * adaptor.</li> * <li>Provide a constructor that takes a single BaseEntry parameter as an * argument that is used when adapting a generic entry type to a more specific * one.</li> * <li>Implement the {@link Kind.Adaptor#declareExtensions(ExtensionProfile)} * method and use it to declare the extension model for the adapted instance * within the profile passed as a parameter.   This is used to auto-extend * an extension profile when kind Category tags are found during parsing of * content.</li> * <li>Expose convenience APIs to retrieve and set extension attributes, with * an implementions that delegates to {@link ExtensionPoint} methods to * store/retrieve the extension data. * </ul> * * Here is the Relax-NG schema that represents an Atom 1.0 entry: * <pre> * atomEntry = *   element atom:entry { *     atomCommonAttributes, *     (atomAuthor* *     & atomCategory* *     & atomContent? *     & atomContributor* *     & atomId *     & atomLink* *     & atomPublished? *     & atomRights? *     & atomSource? *     & atomSummary? *     & atomTitle *     & atomUpdated *     & extensionElement*) * </pre> * * @param <E> the entry type associated with the bound subtype. * @see Kind.Adaptor * @see Kind.Adaptable * *  *  */public abstract class BaseEntry<E extends BaseEntry>    extends ExtensionPoint    implements Kind.Adaptable, Kind.Adaptor {  /**   * The EntryState class provides a simple structure that encapsulates   * the attributes of an Atom entry that should be shared with a shallow   * copy if the entry is adapted to a more specific BaseEntry   * {@link Kind.Adaptor} subtypes.   *   * @see BaseEntry#BaseEntry(BaseEntry)   */  protected static class EntryState {    /** Entry id. */    public String id;    /**     * Version ID. This is a unique number representing this particular     * entry. Every update changes the version ID (unless the update     * doesn't modify anything, in which case it's permissible for     * version ID to stay the same). Services are free to interpret this     * string in the most convenient way. Some services may choose to use     * a monotonically increasing sequence of version IDs. Other services     * may compute a hash of entry properties and use that.     * <p>     * This property is only used for services to communicate the current     * version ID back to the servlet. It is NOT set when entries are     * parsed (either from requests or from arbitrary XML).     */    public String versionId;    /** Creation timestamp. Ignored on updates. */    public DateTime published;    /** Last updated timestamp. */    public DateTime updated;    /** Categories of entry. */    public HashSet<Category> categories = new HashSet<Category>();    /** Title of entry. */    public TextConstruct title;    /** Summary of entry. */    public TextConstruct summary;    /** Rights of entry. */    public TextConstruct rights;    /** Content of entry. */    public Content content;    /** Links of entry. */    public LinkedList<Link> links = new LinkedList<Link>();    /** Authors of entry. */    public LinkedList<Person> authors = new LinkedList<Person>();    /** Contributors of entry. */    public LinkedList<Person> contributors = new LinkedList<Person>();    /** Source. */    public Source source;    /** Service. */    public Service service;    /** {code true} if the entry can be modified by a client. */    public boolean canEdit = true;    /**     * Atom publication control status, which contains the draft status.     */    public PubControl pubControl;    /** Adaptable helper. */    public Kind.Adaptable adaptable = new Kind.AdaptableHelper();  }  /**   * Basic state for this entry.   May be shared across multiple adapted   * instances associated with the same logical entry.   */  protected EntryState state;  /**   * Constructs a new BaseEntry instance.   */  protected BaseEntry() {    state = new EntryState();  }  /**   * Copy constructor that initializes a new BaseEntry instance to have   * identical contents to another instance, using a shared reference to   * the same {@link EntryState}.  {@link Kind.Adaptor} subclasses   * of {@code BaseEntry} can use this constructor to create adaptor   * instances of an entry that share state with the original.   */  protected BaseEntry(BaseEntry sourceEntry) {    super(sourceEntry);    state = sourceEntry.state;  }  public String getId() { return state.id; }  public void setId(String v) {    if (v != null && "-".equals(v)) {      // Disallow dash as an entry id. It leads to ambiguity because      // we use a dash to separate category queries in a feed URI.      // Does /feeds/feed-id/-/X mean a feed request with a category      // query "X", or an entry request with "-" as the entry ID      // and X as the version number. In {@link UriTemplate} we've      // made the choice that it means a feed request. Therefore "-"      // cannot be an entry ID.      throw new IllegalArgumentException("Entry.id must not be equal to '-'.");    }    state.id = v;  }  public String getVersionId() { return state.versionId; }  public void setVersionId(String v) { state.versionId = v; }  public DateTime getPublished() { return state.published; }  public void setPublished(DateTime v) {    if (v != null && v.getTzShift() == null) {      throw new IllegalArgumentException(          "Entry.published must have a timezone.");    }    state.published = v;  }  public DateTime getUpdated() { return state.updated; }  public void setUpdated(DateTime v) {    if (v != null && v.getTzShift() == null) {      throw new IllegalArgumentException("Entry.updated must have a timezone.");    }    state.updated = v;  }  public Set<Category> getCategories() { return state.categories; }  public TextConstruct getTitle() { return state.title; }  public void setTitle(TextConstruct v) { state.title = v; }  public TextConstruct getSummary() { return state.summary; }  public void setSummary(TextConstruct v) { state.summary = v; }  public TextConstruct getRights() { return state.rights; }  public void setRights(TextConstruct v) { state.rights = v; }  public Content getContent() { return state.content; }  public void setContent(Content v) { state.content = v; }  public void setContent(TextConstruct tc) {    state.content = new TextContent(tc);  }  public List<Link> getLinks() { return state.links; }  public List<Person> getAuthors() { return state.authors; }  public List<Person> getContributors() { return state.contributors; }  public Source getSource() { return state.source; }  public void setSource(Source v) { state.source = v; }  /**   * Set draft status. Passing a null value means unsetting the draft   * status.   *   * @param v   Draft status, or null to unset.   */  public void setDraft(Boolean v) {    if (state.pubControl == null) {      if (v != Boolean.TRUE) {        // No need to create a PubControl entry for that        return;      }      state.pubControl = new PubControl();    }    state.pubControl.setDraft(v);  }  /**   * Draft status.   *   * @return True if draft status is set and equals true.   */  public boolean isDraft() {    return state.pubControl != null ? state.pubControl.isDraft() : false;  }  /**   * Gets the app:control tag.   *   * @return pub control tag or null if unset   */  public PubControl getPubControl() { return state.pubControl; }  /**   * Sets the app:control tag, which usually contains app:draft.   *   * @param value PubControl the new object or null   */  public void setPubControl(PubControl value) { state.pubControl = value; }  public void setService(Service s) { state.service = s; }  public Service getService() { return state.service; }  public boolean getCanEdit() { return state.canEdit; }  public void setCanEdit(boolean v) { state.canEdit = v; }  public void addAdaptor(Kind.Adaptor adaptor) {    state.adaptable.addAdaptor(adaptor);  }  public Collection<Kind.Adaptor> getAdaptors() {    return state.adaptable.getAdaptors();  }  public <A extends Kind.Adaptor> A getAdaptor(Class<A> adaptorClass) {    return state.adaptable.getAdaptor(adaptorClass);  }  /**   * Retrieves the first link with the supplied {@code rel} and/or   * {@code type} value.   * <p>   * If either parameter is {@code null}, doesn't return matches   * for that parameter.   */  public Link getLink(String rel, String type) {    for (Link link : state.links) {      String linkRel = link.getRel();      String linkType = link.getType();      if ((rel == null || (linkRel != null && linkRel.equals(rel))) &&          (type == null || (linkType != null && linkType.equals(type)))) {        return link;      }    }    return null;  }  /**   * Adds a link pointing to an HTML representation.   *   * @param   htmlUri   *            Link URI.   *   * @param   lang   *            Optional language code.   *   * @param   title   *            Optional title.   */  public void addHtmlLink(String htmlUri, String lang, String title) {    Link link = new Link();    link.setRel(Link.Rel.ALTERNATE);    link.setType(Link.Type.HTML);    link.setHref(htmlUri);    if (lang != null) {      link.setHrefLang(lang);    }    if (title != null) {      link.setTitle(title);    }    state.links.add(link);  }  /** Retrieves the resource access link. */  public Link getSelfLink() {    Link selfLink = getLink(Link.Rel.SELF, Link.Type.ATOM);    return selfLink;  }  /** Retrieves the resource edit link. */  public Link getEditLink() {    Link editLink = getLink(Link.Rel.ENTRY_EDIT, Link.Type.ATOM);    return editLink;  }  /** Retrieves the media resource edit link. */  public Link getMediaEditLink() {    Link mediaLink = getLink(Link.Rel.MEDIA_EDIT, null);    if (mediaLink == null) {      // Temporary back compat support for old incorrect media link value.      // to the new value.      mediaLink = getLink(Link.Rel.MEDIA_EDIT_BACKCOMPAT, null);    }    return mediaLink;  }  /** Retrieves the first HTML link. */  public Link getHtmlLink() {    Link htmlLink = getLink(Link.Rel.ALTERNATE, Link.Type.HTML);    return htmlLink;  }  /**   * Retrieves the current version of this Entry by requesting it from   * the associated GData service.   *   * @return the current version of the entry.   */  public E getSelf() throws IOException, ServiceException {    if (state.service == null) {      throw new ServiceException(          "Entry is not associated with a GData service");    }    Link selfLink = getSelfLink();    if (selfLink == null) {      throw new UnsupportedOperationException("Entry cannot be retrieved");    }    URL entryUrl = new URL(selfLink.getHref());    try {      return (E) state.service.getEntry(entryUrl, this.getClass(),          state.updated);    } catch (NotModifiedException e) {      return (E) this;    }  }  /**   * Updates this entry by sending the current representation to the   * associated GData service.   *   * @return the updated entry returned by the Service.   *   * @throws ServiceException   *           If there is no associated GData service or the service is   *           unable to perform the update.   *   * @throws UnsupportedOperationException   *           If update is not supported for the target entry.   *   * @throws IOException   *           If there is an error communicating with the GData service.   */  public E update() throws IOException, ServiceException {    if (state.service == null) {      throw new ServiceException(          "Entry is not associated with a GData service");    }    Link editLink = getEditLink();    if (editLink == null) {      throw new UnsupportedOperationException("Entry cannot be updated");    }    URL editUrl = new URL(editLink.getHref());    return (E) state.service.update(editUrl, this);  }  /**   * Deletes this entry by sending a request to the associated GData   * service.   *   * @throws ServiceException   *           If there is no associated GData service or the service is   *           unable to perform the deletion.   *   * @throws UnsupportedOperationException   *           If deletion is not supported for the target entry.   *   * @throws IOException   *           If there is an error communicating with the GData service.   */  public void delete() throws IOException, ServiceException {    if (state.service == null) {      throw new ServiceException(          "Entry is not associated with a GData service");    }    Link editLink = getEditLink();    if (editLink == null) {      throw new UnsupportedOperationException("Entry cannot be deleted");    }    URL editUrl = new URL(editLink.getHref());    state.service.delete(editUrl);  }  /**   * Generates XML in the Atom format.   *   * @param   w   *            Output writer.   *   * @param   extProfile

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -