FileDocCategorySizeDatePackage
ResourceImpl.javaAPI DocJBoss 4.2.12430Fri Jul 13 20:53:44 BST 2007org.jboss.ejb

ResourceImpl

public class ResourceImpl extends Object implements Resource
// *
author
William DeCoste
version
$Revision: 57207 $

Fields Summary
private boolean
shareable
private AuthenticationType
authenticationType
private String
name
private Class
type
private String
description
private String
mappedName
Constructors Summary
public ResourceImpl()


    
   
   
Methods Summary
public java.lang.ClassannotationType()

      return javax.annotation.Resource.class;
   
public AuthenticationTypeauthenticationType()

      return authenticationType;
   
public java.lang.Stringdescription()

      return this.description;
   
public java.lang.StringmappedName()

 return mappedName; 
public java.lang.Stringname()

      return name;
   
public voidsetAuthenticationType(AuthenticationType authorizationType)

      this.authenticationType = authorizationType;
   
public voidsetDescription(java.lang.String description)

      this.description = description;
   
public voidsetName(java.lang.String name)

      this.name = name;
   
public voidsetShareable(boolean shareable)

      this.shareable = shareable;
   
public voidsetType(java.lang.Class type)

      this.type = type;
   
public booleanshareable()

      return shareable;
   
public java.lang.Classtype()

      return type;