001: /*
002: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
003: *
004: * Copyright 1997-2007 Sun Microsystems, Inc. All rights reserved.
005: *
006: * The contents of this file are subject to the terms of either the GNU
007: * General Public License Version 2 only ("GPL") or the Common Development
008: * and Distribution License("CDDL") (collectively, the "License"). You
009: * may not use this file except in compliance with the License. You can obtain
010: * a copy of the License at https://glassfish.dev.java.net/public/CDDL+GPL.html
011: * or glassfish/bootstrap/legal/LICENSE.txt. See the License for the specific
012: * language governing permissions and limitations under the License.
013: *
014: * When distributing the software, include this License Header Notice in each
015: * file and include the License file at glassfish/bootstrap/legal/LICENSE.txt.
016: * Sun designates this particular file as subject to the "Classpath" exception
017: * as provided by Sun in the GPL Version 2 section of the License file that
018: * accompanied this code. If applicable, add the following below the License
019: * Header, with the fields enclosed by brackets [] replaced by your own
020: * identifying information: "Portions Copyrighted [year]
021: * [name of copyright owner]"
022: *
023: * Contributor(s):
024: *
025: * If you wish your version of this file to be governed by only the CDDL or
026: * only the GPL Version 2, indicate your decision by adding "[Contributor]
027: * elects to include this software in this distribution under the [CDDL or GPL
028: * Version 2] license." If you don't indicate a single choice of license, a
029: * recipient has the option to distribute your version of this file under
030: * either the CDDL, the GPL Version 2 or to extend the choice of license to
031: * its licensees as provided above. However, if you add GPL Version 2 code
032: * and therefore, elected the GPL Version 2 license, then the option applies
033: * only if the new code is made subject to such option by the copyright
034: * holder.
035: */
036:
037: package com.sun.xml.bind.api;
038:
039: import javax.xml.bind.ValidationEventHandler;
040: import javax.xml.bind.attachment.AttachmentMarshaller;
041: import javax.xml.bind.attachment.AttachmentUnmarshaller;
042:
043: /**
044: * Holds thread specific state information for {@link Bridge}s,
045: * to make {@link Bridge} thread-safe.
046: *
047: * <p>
048: * This object cannot be used concurrently; two threads cannot
049: * use the same object with {@link Bridge}s at the same time, nor
050: * a thread can use a {@link BridgeContext} with one {@link Bridge} while
051: * the same context is in use by another {@link Bridge}.
052: *
053: * <p>
054: * {@link BridgeContext} is relatively a heavy-weight object, and
055: * therefore it is expected to be cached by the JAX-RPC RI.
056: *
057: * <p>
058: * <b>Subject to change without notice</b>.
059: *
060: * @author Kohsuke Kawaguchi
061: * @since 2.0 EA1
062: * @see Bridge
063: * @deprecated
064: * The caller no longer needs to use this, as {@link Bridge} has
065: * methods that can work without {@link BridgeContext}.
066: */
067: public abstract class BridgeContext {
068: protected BridgeContext() {
069: }
070:
071: /**
072: * Registers the error handler that receives unmarshalling/marshalling errors.
073: *
074: * @param handler
075: * can be null, in which case all errors will be considered fatal.
076: *
077: * @since 2.0 EA1
078: */
079: public abstract void setErrorHandler(ValidationEventHandler handler);
080:
081: /**
082: * Sets the {@link AttachmentMarshaller}.
083: *
084: * @since 2.0 EA1
085: */
086: public abstract void setAttachmentMarshaller(AttachmentMarshaller m);
087:
088: /**
089: * Sets the {@link AttachmentUnmarshaller}.
090: *
091: * @since 2.0 EA1
092: */
093: public abstract void setAttachmentUnmarshaller(
094: AttachmentUnmarshaller m);
095:
096: /**
097: * Gets the last {@link AttachmentMarshaller} set through
098: * {@link AttachmentMarshaller}.
099: *
100: * @since 2.0 EA2
101: */
102: public abstract AttachmentMarshaller getAttachmentMarshaller();
103:
104: /**
105: * Gets the last {@link AttachmentUnmarshaller} set through
106: * {@link AttachmentUnmarshaller}.
107: *
108: * @since 2.0 EA2
109: */
110: public abstract AttachmentUnmarshaller getAttachmentUnmarshaller();
111: }
|