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

📄 session.java

📁 RESIN 3.2 最新源码
💻 JAVA
字号:
/* * Copyright (c) 1998-2006 Caucho Technology -- all rights reserved * * This file is part of Resin(R) Open Source * * Each copy or derived work must preserve the copyright notice and this * notice unmodified. * * Resin Open Source is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * Resin Open Source is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE, or any warranty * of NON-INFRINGEMENT.  See the GNU General Public License for more * details. * * You should have received a copy of the GNU General Public License * along with Resin Open Source; if not, write to the * *   Free Software Foundation, Inc. *   59 Temple Place, Suite 330 *   Boston, MA 02111-1307  USA * * @author Scott Ferguson */package javax.jcr;import org.xml.sax.ContentHandler;import org.xml.sax.SAXException;import javax.jcr.lock.LockException;import javax.jcr.nodetype.ConstraintViolationException;import javax.jcr.nodetype.NoSuchNodeTypeException;import javax.jcr.version.VersionException;import java.io.IOException;import java.io.InputStream;import java.io.OutputStream;/** * Represents an open session to a Repository workspace. */public interface Session {  /**   * Returns the owning repository.   */  public Repository getRepository();  /**   * Returns the user who opened this session.   */  public String getUserID();  /**   * Returns a session attribute.   *   * @param name the session attribute name   */  public Object getAttribute(String name);  /**   * Returns an array of the session attribute names.   */  public String[] getAttributeNames();  /**   * Returns the repository's workspace for this session.   */  public Workspace getWorkspace();  /**   * Create a new session with the new credentials.   *   * @param credentials security credentials for the new sessions.   */  public Session impersonate(Credentials credentials)    throws LoginException, RepositoryException;  /**   * Returns the session's root node.   */  public Node getRootNode()    throws RepositoryException;  /**   * Finds a node by its UUID   *   * @param uuid the node's UUID.   */  public Node getNodeByUUID(String uuid)    throws ItemNotFoundException,	   RepositoryException;  /**   * Returns an item based on an absolute path.   *   * @param absPath the path locating the item.   *   * @throws PathNotFoundException if the path does not name an item   */  public Item getItem(String absPath)    throws PathNotFoundException,	   RepositoryException;  /**   * Returns true if the item named by the path exists.   *   * @param absPath a path locating the item.   */  public boolean itemExists(String absPath)    throws RepositoryException;  /**   * Moves the node given by the source path to the destination path.   *   * @param srcAbsPath the absolute path name of the source node   * @param destAbsPath the absolute path name of the destination node   */  public void move(String srcAbsPath, String destAbsPath)    throws ItemExistsException,	   PathNotFoundException,	   VersionException,	   ConstraintViolationException,	   LockException,	   RepositoryException;  /**   * Saves changes to the workspace.   */  public void save()    throws AccessDeniedException,	   ItemExistsException,	   ConstraintViolationException,	   InvalidItemStateException,	   VersionException, LockException,	   NoSuchNodeTypeException,	   RepositoryException;  /**   * Updates changes from the repository.   */  public void refresh(boolean keepChanges)    throws RepositoryException;  /**   * Returns true if the session has changes.   */  public boolean hasPendingChanges()    throws RepositoryException;  /**   * Returns the session's value factory.   */  public ValueFactory getValueFactory()    throws UnsupportedRepositoryOperationException,	   RepositoryException;  /**   * Checks if the session can perform the given actions for the path.   *   * @param absPath absolute path to a node.   * @param actions actions attempted on the node.   */  public void checkPermission(String absPath, String actions)    throws java.security.AccessControlException,	   RepositoryException;  /**   * Returns a SAX ContentHandler to important data.   *   * @param parentAbsPath the absolute path of the parent node   */  public ContentHandler getImportContentHandler(String parentAbsPath,						int uuidBehavior)    throws PathNotFoundException,	   ConstraintViolationException,	   VersionException,	   LockException,	   RepositoryException;  /**   * Import data based on an XML stream.   *   * @param parentAbsPath path to the node which will be the data's parent.   * @param in InputStream to the XML data   */  public void importXML(String parentAbsPath,			InputStream in,			int uuidBehavior)    throws IOException,	   PathNotFoundException,	   ItemExistsException,	   ConstraintViolationException,	   VersionException,	   InvalidSerializedDataException,	   LockException,	   RepositoryException;  /**   * Exports XML data from the given node based on the system view.   *   * @param absPath path to the node serving as root to export   * @param contentHandler SAX ContentHandler to receive the XML   */  public void exportSystemView(String absPath,			       ContentHandler contentHandler,			       boolean skipBinary,			       boolean noRecurse)    throws PathNotFoundException,	   SAXException,	   RepositoryException;    /**   * Exports XML data from the given node based on the system view.   *   * @param absPath path to the node serving as root to export   * @param out OutputStream to receive the XML   */  public void exportSystemView(String absPath,			       OutputStream out,			       boolean skipBinary,			       boolean noRecurse)    throws IOException,	   PathNotFoundException,	   RepositoryException;    /**   * Exports XML data from the given node based on the document view.   *   * @param absPath path to the node serving as root to export   * @param out OutputStream to receive the XML   */  public void exportDocumentView(String absPath,				 ContentHandler contentHandler,				 boolean skipBinary,				 boolean noRecurse)    throws PathNotFoundException,	   SAXException,	   RepositoryException;    /**   * Exports XML data from the given node based on the document view.   *   * @param absPath path to the node serving as root to export   * @param out OutputStream to receive the XML   */  public void exportDocumentView(String absPath,				 OutputStream out,				 boolean skipBinary,				 boolean noRecurse)    throws IOException,	   PathNotFoundException,	   RepositoryException;    /**   * Exports XML data from the given node based on the document view.   *   * @param absPath path to the node serving as root to export   * @param out OutputStream to receive the XML   */  public void setNamespacePrefix(String newPrefix,				 String existingUri)    throws NamespaceException,	   RepositoryException;    /**   * Returns the session's namespace prefixes.   */  public String[] getNamespacePrefixes()    throws RepositoryException;    /**   * Returns the URI for a given namespace prefix.   */  public String getNamespaceURI(String prefix)    throws NamespaceException,	   RepositoryException;    /**   * Returns the prefix for a given URI.   */  public String getNamespacePrefix(String uri)    throws NamespaceException,	   RepositoryException;    /**   * Close the session.   */  public void logout();    /**   * Return true if the session is active.   */  public boolean isLive();    /**   * Adds a lock token.   */  public void addLockToken(String lt)    throws LockException,	   RepositoryException;    /**   * Returns the current lock tokens.   */  public String[] getLockTokens();    /**   * Removes the named lock token.   */  public void removeLockToken(String lt);}

⌨️ 快捷键说明

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