Searched +refs:val +refs:target (Results 1 - 12 of 12) sorted by relevance

/glassfish-3.1.2/common/common-util/src/test/java/org/glassfish/common/util/admin/
H A DMapInjectionResolverTest.java150 AnnotatedElement target = (AnnotatedElement)cl.getDeclaredField("foo");
153 target, String.class, paramValueStr);
157 target = (AnnotatedElement)cl.getDeclaredField("prop");
159 target, Properties.class, paramValueStr);
166 target = (AnnotatedElement)cl.getDeclaredField("portnum");
169 target, Integer.class, paramValueStr);
174 target = (AnnotatedElement)cl.getDeclaredField("lstr");
176 target, List.class, paramValueStr);
184 target = (AnnotatedElement)cl.getDeclaredField("astr");
186 target, (ne
[all...]
/glassfish-3.1.2/ejb/ejb-container/src/main/java/com/sun/ejb/containers/
H A DEjbContainerUtilImpl.java298 public EJBTimerService getEJBTimerService(String target) { argument
299 return getEJBTimerService(target, true);
302 public EJBTimerService getEJBTimerService(String target, boolean force) { argument
304 deployEJBTimerService(target);
312 } else if (target == null) {
313 // target is null when accessed from the BaseContainer on load, i.e. where timers are running
493 private void deployEJBTimerService(String target) { argument
525 String resourceName = getTimerResource(target);
529 if (isDas() && (!isUpgrade(resourceName, target, appScratchFile.exists()) & appScratchFile.createNewFile())) {
534 params.target
570 isUpgrade(String resource, String target, boolean upgrade_with_load) argument
636 getTimerResource(String target) argument
652 getEjbTimerService(String target) argument
[all...]
H A DStatefulSessionContainer.java1246 * @throws NoSuchObjectLocalException if the target object does not exist
2520 public void invokePeriodically(long delay, long periodicity, Runnable target) { argument
2523 TimerTask timerTask = new PeriodicTask(super.loader, target, ejbContainerUtilImpl);
2540 public void setSfsbHaPersistenceType(String val) { argument
2541 this.sfsbHaPersistenceStoreType = val;
2852 public void setRemovalGracePeriodInSeconds(int val) { argument
2853 this.removalGracePeriodInSeconds = val;
2859 long val = 0;
2861 val = backingStore.removeExpired(this.removalGracePeriodInSeconds * 1000L);
2867 containerInfo.ejbName, val);
3228 PeriodicTask(ClassLoader classLoader, Runnable target, EjbContainerUtil ejbContainerUtil) argument
3253 Runnable target; field in class:AsynchronousTask
3256 AsynchronousTask(ClassLoader cloassLoader, Runnable target) argument
[all...]
/glassfish-3.1.2/admin/cli-optional/src/main/java/com/sun/enterprise/admin/cli/optional/
H A DLoginCommand.java78 @Param(name = "target", optional = true, defaultValue =
80 private String target; field in class:LoginCommand
146 String val = cons.readLine();
147 if (val != null && val.length() > 0)
148 user = val;
/glassfish-3.1.2/registration/registration-impl/src/main/java/com/sun/enterprise/registration/impl/environment/
H A DSolarisSystemEnvironment.java331 private String getSmbiosData(String type, String target) { argument
334 if (s.contains(target)) {
335 int indx = s.indexOf(target) + target.length();
380 String val = line.substring(index+tok.length());
381 String vals[] = val.split("\"");
422 String val = line.substring(index+tok.length());
423 return val.trim();
/glassfish-3.1.2/web/web-ajp/src/main/java/org/apache/jk/server/
H A DJkMain.java83 * and is the target of JMX proxy.
399 public void setBeanProperty( Object target, String name, String val ) { argument
400 if( val!=null )
401 val=IntrospectionUtils.replaceProperties( val, (Hashtable)props, null );
403 log.finest( "setProperty " + target + " " + name + "=" + val );
405 IntrospectionUtils.setProperty( target, name, val );
[all...]
/glassfish-3.1.2/admingui/common/src/main/resources/js/
H A Dadminjsf.js50 var val=confirm(msg);
52 return val;
61 function submitAndDisable(button, msg, target) {
64 if (target) {
68 var oldtarget = button.form.target;
69 button.form.target = target;
74 button.form.target = oldtarget;
986 if ((node.target == null)
987 || (node.target
[all...]
/glassfish-3.1.2/ejb/ejb-container/src/main/java/com/sun/ejb/base/io/
H A DEJBObjectOutputStream.java126 org.omg.CORBA.Object target = (org.omg.CORBA.Object) obj;
129 result = getSerializableEJBReference(target, protocolMgr, null);
168 org.omg.CORBA.Object target = (org.omg.CORBA.Object)
170 return getSerializableEJBReference(target,
385 void setSFSBClientVersion(Object key, long val) { argument
387 this.sfsbClientVersion = val;
/glassfish-3.1.2/security/jaspic-provider-framework/src/main/java/com/sun/jaspic/config/factory/
H A DRegStoreFileParser.java199 private boolean checkAndRemoveFromList(RegistrationContext target) { argument
214 if (ctx.equals(target)) {
234 private EntryInfo getMatchingRegEntry(EntryInfo target) { argument
236 if (!info.isConstructorEntry() && info.matchConstructors(target)) {
285 for (Map.Entry<String,String> val : props.entrySet()) {
286 out.println(INDENT[i] + val.getKey() + SEP + val.getValue());
/glassfish-3.1.2/core/kernel/src/main/java/com/sun/enterprise/v3/admin/
H A DCommandRunnerImpl.java930 String targetName = parameters.getOne("target");
931 if (targetName == null || model.getModelFor("target").getParam().obsolete()) {
935 logger.fine(adminStrings.getLocalString("dynamicreconfiguration.diagnostics.target",
936 "@ExecuteOn parsing and default settings done; Current target is " + targetName));
940 // Check if the command allows this target type; first read the annotation
956 // If the target is "server" and the command is not marked for DAS,
960 // ONLY if the target is "server"
971 // Check if the target is valid
979 "Unable to find a valid target with name {0}", targetName));
982 //Does this command allow this target typ
1327 getValue(Object component, Inhabitant<?> onBehalfOf, AnnotatedElement target, Type genericType, Class<V> type) argument
1371 checkAgainstAcceptableValues( AnnotatedElement target, String paramValueStr) argument
[all...]
/glassfish-3.1.2/tests/jbi/lib/
H A Dreporter.jar ... String) throws org.xml.sax.SAXException String target String data public void startPrefixMapping (java.lang.String ...
/glassfish-3.1.2/tests/quicklook/web/jruby/helloapp/public/javascripts/
H A Dprototype.js2205 var val = proceed(element, property);
2206 return val === null ? memo : memo - parseInt(val, 10);
3848 var node = event.target,
3855 // reporting the document as the target instead of the original image.
3917 target: event.srcElement,
4242 clone: function(source, target, options) {
4244 return Element.clonePosition(target, source, options);

Completed in 59 milliseconds