/glassfish-3.1.2/common/glassfish-api/src/main/java/org/glassfish/api/deployment/archive/ |
H A D | CompositeHandler.java | 64 public boolean accept(ReadableArchive source, String entryName); argument
|
H A D | ArchiveHandler.java | 111 * @param source of the expanding 115 public void expand(ReadableArchive source, WritableArchive target, DeploymentContext context) throws IOException; argument
|
/glassfish-3.1.2/deployment/dol/src/main/java/com/sun/enterprise/deployment/ |
H A D | ArchiveOperationListener.java | 49 public void addArchiveEntries(Object source, Hashtable entries); argument 52 public void removeArchiveEntries(Object source, Vector entries); argument
|
/glassfish-3.1.2/common/internal-api/src/main/java/org/glassfish/internal/deployment/ |
H A D | GenericHandler.java | 77 * @param source of the expanding 82 public void expand(ReadableArchive source, WritableArchive target, argument 85 Enumeration<String> e = source.entries(); 88 InputStream is = new BufferedInputStream(source.getEntry(entryName)); 92 FileUtils.copy(is, os, source.getEntrySize(entryName)); 102 Manifest m = source.getManifest();
|
/glassfish-3.1.2/deployment/common/src/main/java/org/glassfish/deployment/common/ |
H A D | ModuleExploder.java | 78 public static void explodeJar(File source, File destination) throws IOException { argument 82 jarFile = new JarFile(source); 112 new Object[] {source.getAbsolutePath()}); 128 public static void explodeModule(Archive source, File directory, boolean preserveManifest) argument 137 explodeJar(new File(source.getURI()), directory); 157 for (Enumeration itr = source.entries();itr.hasMoreElements();) { 210 source.close();
|
/glassfish-3.1.2/deployment/javax.enterprise.deploy/src/main/java/javax/enterprise/deploy/spi/status/ |
H A D | ProgressEvent.java | 62 * @param source the object on which the Event initially occurred. 66 public ProgressEvent (Object source, TargetModuleID targetModuleID, argument 69 super(source);
|
/glassfish-3.1.2/extras/osgi-container/src/main/java/org/glassfish/extras/osgicontainer/ |
H A D | OSGiArchiveHandler.java | 83 public boolean accept(ReadableArchive source, String entryName) { argument
|
/glassfish-3.1.2/web/war-util/src/main/java/org/glassfish/web/loader/ |
H A D | ResourceEntry.java | 94 * URL source from where the object was loaded. 96 public URL source = null; field in class:ResourceEntry
|
/glassfish-3.1.2/admin/config-api/src/main/java/org/glassfish/config/support/ |
H A D | TypedChangeEvent.java | 55 public TypedChangeEvent(Object source, String propertyName, Object oldValue, Object newValue) { argument 56 super(source, propertyName, oldValue, newValue); 60 public TypedChangeEvent(Object source, String propertyName, Object oldValue, Object newValue, Type type) { argument 61 super(source, propertyName, oldValue, newValue);
|
H A D | TypedVetoableChangeSupport.java | 55 final private Object source; field in class:TypedVetoableChangeSupport 59 source = sourceBean; 65 super.fireVetoableChange(new TypedChangeEvent(source, propertyName, oldValue, newValue));
|
H A D | GlassFishConfigBean.java | 75 public <T extends ConfigBeanProxy> T transform(T source) { 76 final ConfigView handler = (ConfigView) Proxy.getInvocationHandler(source); 89 public GlassFishConfigBean(Dom source, Dom parent) { argument 90 super(source, parent);
|
/glassfish-3.1.2/admin/jmx-remote/common/src/main/java/com/sun/enterprise/admin/jmx/remote/notification/ |
H A D | NotificationWrapper.java | 56 private ObjectName source = null; field in class:NotificationWrapper 59 public NotificationWrapper(int type, ObjectName source, Notification notif) { argument 61 this.source = source; 65 public NotificationWrapper(ObjectName source, Notification notif) { argument 67 this.source = source; 76 return source;
|
/glassfish-3.1.2/appclient/server/core/src/main/java/org/glassfish/appclient/server/core/ |
H A D | ApplicationClientJarMaker.java | 87 * @param source is the abstract archive for the source module deployed 94 public void create(RootDeploymentDescriptor descriptor, ReadableArchive source, argument 97 create(descriptor, source, null, target, stubs, props); 103 * @param source is the abstract archive for the source module deployed 104 * @param source is the abstract archive for the generated xml directory 111 public void create(RootDeploymentDescriptor descriptor, ReadableArchive source, argument 121 ClientJarMakerUtils.populateModuleJar(source, source2, target); 133 URI appURI = new File(source [all...] |
H A D | ClientJarMaker.java | 62 * @param source is the abstract archive for the source module deployed 70 ReadableArchive source, WritableArchive target, 77 * @param source is the abstract archive for the source module deployed 85 public void create(RootDeploymentDescriptor descriptor, ReadableArchive source, ReadableArchive source2, WritableArchive target, ZipItem[] stubs, Properties props) argument 69 create(RootDeploymentDescriptor descriptor, ReadableArchive source, WritableArchive target, ZipItem[] stubs, Properties props) argument
|
H A D | ModuleClientJarMaker.java | 81 * @param source is the abstract archive for the source module deployed 88 public void create(RootDeploymentDescriptor descriptor, ReadableArchive source, argument 91 create(descriptor, source, null, target, stubs, props); 97 * @param source is the abstract archive for the source module deployed 105 public void create(RootDeploymentDescriptor descriptor, ReadableArchive source, argument 122 Application.class.cast(descriptor), source); 127 subSource = source.getSubArchive(entryName); 146 appclientSource = source [all...] |
/glassfish-3.1.2/common/glassfish-api/src/main/java/com/sun/appserv/server/ |
H A D | LifecycleEvent.java | 80 * @param source The object on which the event initially occurred 84 public LifecycleEvent(Object source, int eventType, Object eventData, LifecycleEventContext ctx) { argument 85 super(source);
|
/glassfish-3.1.2/common/glassfish-api/src/main/java/org/glassfish/api/container/ |
H A D | Sniffer.java | 68 * @param source the file or directory abstracted as an archive 70 * resources from the source archive. 73 public boolean handles(ReadableArchive source, ClassLoader loader); argument 142 * specific archive source. 149 * @param source the contents of the application's archive 154 public Map<String,String> getDeploymentConfigurations(final ReadableArchive source) throws IOException; argument
|
/glassfish-3.1.2/connectors/javax.resource/src/main/java/javax/resource/spi/ |
H A D | ConnectionEvent.java | 46 /** The ConnectionEvent class provides information about the source of 120 * @param source ManagedConnection that is the 121 * source of the event 124 public ConnectionEvent(ManagedConnection source, int eid) { argument 125 super(source); 132 * @param source ManagedConnection that is the 133 * source of the event 137 public ConnectionEvent(ManagedConnection source, int eid, argument 139 super(source);
|
/glassfish-3.1.2/connectors/javax.resource/src/main/java/javax/resource/spi/work/ |
H A D | WorkEvent.java | 101 * @param source The object on which the event initially 113 public WorkEvent(Object source, int type, Work work, WorkException exc) { argument 114 super(source); 123 * @param source The object on which the event initially 137 public WorkEvent(Object source, int type, Work work, WorkException exc, argument 139 this(source, type, work, exc);
|
/glassfish-3.1.2/core/kernel/src/main/java/com/sun/enterprise/v3/server/ |
H A D | ContainerStarter.java | 200 public void explodeJar(File source, File destination) throws IOException { argument 204 jarFile = new JarFile(source);
|
/glassfish-3.1.2/deployment/dol/src/main/java/com/sun/enterprise/deployment/node/ejb/ |
H A D | EjbRelationNode.java | 66 RelationRoleDescriptor source = null; field in class:EjbRelationNode 94 if (source==null) { 95 source = (RelationRoleDescriptor) newDescriptor; 99 descriptor.setSource(source); 100 source.setPartner(sink); 101 source.setRelationshipDescriptor(descriptor); 103 sink.setPartner(source); 106 if ( source.getCMRField() != null && sink.getCMRField() != null )
|
/glassfish-3.1.2/extras/grizzly-container/src/main/java/org/glassfish/extras/grizzly/ |
H A D | GrizzlyModuleDescriptor.java | 67 GrizzlyModuleDescriptor(ReadableArchive source, Logger logger) { argument 70 parse(factory.newDocumentBuilder().parse(source.getEntry(DescriptorPath)));
|
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/tomcat/util/modeler/modules/ |
H A D | MbeansDescriptorsDOMSource.java | 98 public void setSource( Object source ) { 99 this.source=source; 103 String type, Object source) 109 setSource(source); 118 InputStream stream=(InputStream)source; 102 loadDescriptors( Registry registry, String location, String type, Object source) argument
|
H A D | MbeansDescriptorsSerSource.java | 98 public void setSource( Object source ) { 99 this.source=source; 103 String type, Object source) throws Exception { 108 setSource(source); 118 if( source instanceof URL ) { 119 stream=((URL)source).openStream(); 121 if( source instanceof InputStream ) { 122 stream=(InputStream)source; 125 throw new Exception( "Can't process "+ source); 102 loadDescriptors( Registry registry, String location, String type, Object source) argument [all...] |
H A D | ModelerSource.java | 75 protected Object source; field in class:ModelerSource 83 * @param source Introspected object or some other source 87 String type, Object source) throws Exception { 109 if( source instanceof URL ) { 110 URL url=(URL)source; 113 } else if( source instanceof File ) { 114 location=((File)source).getAbsolutePath(); 115 return new FileInputStream((File)source); 116 } else if( source instanceo 86 loadDescriptors( Registry registry, String location, String type, Object source) argument [all...] |