org.jafer.registry.web.struts.bean
Class ServiceAccessUrl

java.lang.Object
  extended by org.jafer.registry.web.struts.bean.ServiceAccessUrl

public class ServiceAccessUrl
extends java.lang.Object

This class descriibes an access point for the screen


Field Summary
(package private)  boolean isWSDL
          Stores a reference to whether the url is a WSDL file or not
(package private)  java.lang.String protocol
          Stores a reference to the protocol type
(package private)  java.lang.String type
          Stores a reference to the type WSDL or Acess Point
(package private)  java.lang.String url
          Stores a reference to the access point URL
 
Constructor Summary
ServiceAccessUrl(java.lang.String protocol, java.lang.String type, java.lang.String url, boolean isWSDL)
          Contructor
 
Method Summary
 java.lang.String getProtocol()
          Gets the protocol
 java.lang.String getType()
          Gets the type
 java.lang.String getUrl()
          Gets the URL
 boolean isWSDL()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

protocol

java.lang.String protocol
Stores a reference to the protocol type


type

java.lang.String type
Stores a reference to the type WSDL or Acess Point


url

java.lang.String url
Stores a reference to the access point URL


isWSDL

boolean isWSDL
Stores a reference to whether the url is a WSDL file or not

Constructor Detail

ServiceAccessUrl

public ServiceAccessUrl(java.lang.String protocol,
                        java.lang.String type,
                        java.lang.String url,
                        boolean isWSDL)
Contructor

Parameters:
protocol - The protocol type
type - The access point type
url - The access point URL
isWSDL - true if access point is a WSDL file
Method Detail

getProtocol

public java.lang.String getProtocol()
Gets the protocol

Returns:
Returns the protocol.

getType

public java.lang.String getType()
Gets the type

Returns:
Returns the type.

getUrl

public java.lang.String getUrl()
Gets the URL

Returns:
Returns the url.

isWSDL

public boolean isWSDL()