1 23 24 55 56 package com.sun.enterprise.deployment.runtime.connector; 57 58 import com.sun.enterprise.deployment.runtime.RuntimeDescriptor; 59 60 67 public class SunConnector extends RuntimeDescriptor 68 { 69 70 static public final String RESOURCE_ADAPTER = "ResourceAdapter"; static public final String ROLE_MAP = "RoleMap"; 73 74 public void setResourceAdapter(ResourceAdapter value) 76 { 77 this.setValue(RESOURCE_ADAPTER, value); 78 } 79 80 public ResourceAdapter getResourceAdapter() 82 { 83 return (ResourceAdapter)this.getValue(RESOURCE_ADAPTER); 84 } 85 86 public void setRoleMap(RoleMap value) 88 { 89 this.setValue(ROLE_MAP, value); 90 } 91 92 public RoleMap getRoleMap() 94 { 95 return (RoleMap)this.getValue(ROLE_MAP); 96 } 97 98 public boolean verify() 100 { 101 return true; 102 } 103 } 104 | Popular Tags |