javaruntimes/midp/runtime/javasrc/com/nokia/mj/impl/rt/midp/SchemeHandlerBase.java
branchRCL_3
changeset 83 26b2b12093af
parent 77 7cee158cb8cd
child 84 0553e2305d00
equal deleted inserted replaced
77:7cee158cb8cd 83:26b2b12093af
     1 /*
       
     2 * Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description:
       
    15 *
       
    16 */
       
    17 
       
    18 package com.nokia.mj.impl.rt.midp;
       
    19 
       
    20 import javax.microedition.io.ConnectionNotFoundException;
       
    21 
       
    22 /**
       
    23  * Java based platform request scheme handler base class.
       
    24  */
       
    25 public abstract class SchemeHandlerBase
       
    26 {
       
    27 
       
    28     /*** ----------------------------- PUBLIC ------------------------------ */
       
    29 
       
    30     /**
       
    31      * Execute scheme.
       
    32      *
       
    33      * @param url to be invoked.
       
    34      * @return  true if MIDlet must be closed prior content fetch.
       
    35      * @throws ConnectionNotFoundException if URL execution fails.
       
    36      */
       
    37     public abstract boolean execute(String url) throws ConnectionNotFoundException;
       
    38 }
       
    39