Package com.ericsson.ssa.sip

Examples of com.ericsson.ssa.sip.RemoteLockException


     *   successfully loaded and swapped into the active cache to remain in
     *   the active cache, i.e., there is no need to undo their loading.
     */
    void validate() throws RemoteLockException {
        if (wasLockedOnRemoteInstance()) {
            throw new RemoteLockException(this +
                    " has been locked on remote instance");
        }

        Iterator<PathNode> iter = getCaller2CalleePath();

View Full Code Here


     * locked on remote instance, in which case this SipSession will not
     * be activated.
     */
    void validate(boolean loadDependencies) throws RemoteLockException {
        if (wasLockedOnRemoteInstance()) {
            throw new RemoteLockException(this +
                " has been locked on remote instance");
        }

        if (loadDependencies) {
            SipSessionManager mgr = getSipSessionManager();
View Full Code Here

     */
    public SipApplicationSessionImpl load(String id, String version)
            throws IOException , RemoteLockException {
        if (SipReplicationUtil.isInstanceLoadBalancedByCLB() &&
                !SipReplicationUtil.isLocal(id)) {
            throw new RemoteLockException("load of SipApplicationSession id:" +
                    id + " aborted. Does not map to this instance");
        }
        if (id == null) {
            throw new IOException("load of SipApplicationSession failed. The id is null.");
        }
View Full Code Here

    /**
     * Validates this ServletTimer.
     */
    boolean validate(boolean loadDependencies) throws RemoteLockException {
        if (wasLockedOnRemoteInstance()) {
            throw new RemoteLockException(this +
                " has been locked on remote instance");
        }

        if (loadDependencies) {
            if (getPFieldAppSession() == null) {
View Full Code Here

     * Validates this SipApplicationSession to see if it has been locked on
     * remote instance.
     */
    void validate() throws RemoteLockException {
        if (wasLockedOnRemoteInstance()) {
            throw new RemoteLockException(this +
                " has been locked on remote instance");
        }
    }
View Full Code Here

TOP

Related Classes of com.ericsson.ssa.sip.RemoteLockException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.