1 18 19 package org.objectweb.jac.aspects.distribution; 20 21 import org.objectweb.jac.core.rtti.ClassItem; 22 import org.objectweb.jac.core.rtti.MethodItem; 23 24 31 32 public interface DeploymentConf { 33 34 44 45 void deploy( String deploymentHost, String nameRegexp, String containerName ); 46 47 57 58 void replicate ( String deploymentHost, String nameRegexp, String contRegexp ); 59 60 70 71 void createTypedStubsFor( String name, String serverHost, 72 String hosts, String stubType ); 73 74 82 83 void createStubsFor( String name, String serverHost, String hosts ); 84 85 93 94 void createAsynchronousStubsFor( String name, String serverHost, String hosts ); 95 96 101 102 void setTransient(ClassItem classItem, String fieldName); 103 104 117 void setParametersPassingMode(MethodItem method, Boolean [] refs); 118 119 } 120 121 122 | Popular Tags |