Searched defs:key (Results 1 - 25 of 196) sorted by relevance

12345678

/glassfish-3.1.2/common/container-common/src/main/java/org/glassfish/ha/common/
H A DGlassFishHAReplicaPredictor.java52 public HACookieInfo makeCookie(String groupName, Object key, String oldJReplica); argument
H A DNoopHAReplicaPredictor.java54 public HACookieInfo makeCookie(String groupName, Object key, String version) { argument
/glassfish-3.1.2/common/glassfish-naming/src/main/java/com/sun/enterprise/naming/util/
H A DLocalStringManager.java56 * resource bundle that provides a value for the requested key.
68 * @param key The name of the resource to fetch
74 String key,
82 * @param key The key to the local format string
89 String key,
72 getLocalString( Class callerClass, String key, String defaultValue ) argument
87 getLocalString( Class callerClass, String key, String defaultFormat, Object arguments[] ) argument
/glassfish-3.1.2/common/internal-api/src/main/java/org/glassfish/internal/embedded/grizzly/
H A DGrizzlyInfo.java54 public void setProperty(String key, String value) { argument
55 props.setProperty(key, value);
/glassfish-3.1.2/core/kernel/src/main/java/com/sun/enterprise/v3/services/impl/
H A DGrizzlyUtils.java62 * @param key <code>SelectionKey</code>
67 public static int readToWorkerThreadBuffers(SelectionKey key, int timeout) throws IOException { argument
68 Object attachment = key.attachment();
77 return Utils.readWithTemporarySelector(key.channel(),
95 return SSLUtils.doSecureRead(key.channel(), sslEngine, byteBuffer,
/glassfish-3.1.2/ejb/ejb-container/src/main/java/com/sun/ejb/containers/util/cache/
H A DPassivatedSessionInfo.java47 public long key; field in class:PassivatedSessionInfo
51 public PassivatedSessionInfo(long key, int lastAccessedAt, argument
53 this.key = key;
58 public PassivatedSessionInfo(long key, int lastAccessedAt) { argument
59 this.key = key;
H A DEJBObjectCacheListener.java53 public void handleOverflow(Object key); argument
/glassfish-3.1.2/common/common-util/src/main/java/com/sun/appserv/util/cache/
H A DCacheListener.java51 * @param key lookup key
54 public void trimEvent(Object key, Object value); argument
/glassfish-3.1.2/common/common-util/src/main/java/com/sun/enterprise/util/
H A DLocalStringManager.java56 * resource bundle that provides a value for the requested key.
67 * @param key The name of the resource to fetch
73 String key,
80 * @param key The key to the local format string
87 String key,
92 public String getLocalString(String key, String defaultValue); argument
71 getLocalString( Class callerClass, String key, String defaultValue ) argument
85 getLocalString( Class callerClass, String key, String defaultFormat, Object arguments[] ) argument
H A DLocalStringManagerImpl.java93 * resource bundle that provides a value for the requested key.
104 * @param key The name of the resource to fetch
110 String key,
131 String value = resources.getString(key);
141 return getLocalString(null, key, defaultValue);
144 System.err.println("No local string for " + key);
148 getLogger().log(Level.FINE,"No local string for " + key);
156 * @param key The name of the resource to fetch
160 public String getLocalString(String key, String defaultValue) { argument
161 return getLocalString(null, key, defaultValu
108 getLocalString( Class callerClass, String key, String defaultValue ) argument
173 getLocalString( Class callerClass, String key, String defaultFormat, Object... arguments ) argument
201 getLocalString( String key, String defaultFormat, Object... arguments ) argument
[all...]
/glassfish-3.1.2/security/javax.security.jacc/src/main/java/javax/security/jacc/
H A DPolicyContextHandler.java65 * (case-sensitive) key value.
66 * @param key a <code>String</code> value identifying a context object
70 * corresponding to the argument key is handled by the handler.
79 public boolean supports(String key) argument
83 * supported by the handler. The value of each key supported by a handler
87 * must not contain duplicate key values. In the
104 * identified by the (case-sensitive) key. In addition to the key,
112 * @param key a String that identifies the context object to be returned
128 public Object getContext(String key, Objec argument
[all...]
/glassfish-3.1.2/common/simple-glassfish-api/src/main/java/org/glassfish/embeddable/
H A DBootstrapProperties.java84 * <p/> If getProperties().setProperty(key,value) is called, then it will
97 * @param key the key to be placed into this bootstrap properties.
98 * @param value the value corresponding to the key.
100 public void setProperty(String key, String value) { argument
101 properties.setProperty(key, value);
105 * Get the value of the property with the specified key.
107 * @param key the property key
108 * @return value of the property for the specified key, nul
110 getProperty(String key) argument
[all...]
/glassfish-3.1.2/ejb/ejb-container/src/main/java/com/sun/ejb/codegen/
H A DJavaCompilerException.java66 JavaCompilerException(String key, String defalt) argument
68 super(localStrings.getStringWithDefault(key, defalt));
71 JavaCompilerException(String key, String defalt, String oneObj) argument
73 this(key, defalt, new Object[] { oneObj });
76 JavaCompilerException(String key, String defalt, Throwable t) argument
78 super(localStrings.getStringWithDefault(key, defalt), t);
81 JavaCompilerException(String key, String defalt, Object[] objs) argument
83 super(localStrings.getStringWithDefault(key, defalt, objs));
86 JavaCompilerException(String key, String defalt, Object[] objs, Throwable t) argument
88 super(localStrings.getStringWithDefault(key, defal
[all...]
/glassfish-3.1.2/ejb/ejb-container/src/main/java/com/sun/ejb/containers/
H A DSFSBTxCheckpointCoordinator.java97 st.store.save(st.key, st.state, st.isNew);
117 Serializable key; field in class:SFSBTxCheckpointCoordinator.StoreAndBeanState
122 StoreAndBeanState(Serializable key, argument
125 this.key = key;
/glassfish-3.1.2/tests/amx/src/org/glassfish/admin/amxtest/
H A DCapabilities.java83 final String key,
85 assert (!mItems.containsKey(key));
86 mItems.put(key, value);
82 add( final String key, final Object value) argument
/glassfish-3.1.2/transaction/javax.transaction/src/main/java/javax/transaction/
H A DTransactionSynchronizationRegistry.java67 * overrides hashCode and equals to allow its use as the key in a
95 * method is called. The supplied key should be of an caller-
97 * of the key must guarantee that the hashCode and equals methods are
98 * suitable for use as keys in a map. The key and value are not examined
102 * if there is already an value associated with the key, it is replaced
105 * @param key the key for the Map entry.
108 * @exception NullPointerException if the parameter key is null.
112 void putResource(Object key, Object value); argument
117 * method is called. The key shoul
133 getResource(Object key) argument
[all...]
/glassfish-3.1.2/transaction/jts/src/main/java/com/sun/jts/utils/
H A DLogFormatter.java131 public static String getLocalizedMessage(Logger logger , String key){ argument
134 String message = rb.getString(key);
138 return key;
147 public static String getLocalizedMessage(Logger logger , String key, argument
151 String message = rb.getString(key);
155 return key;
/glassfish-3.1.2/web/web-naming/src/main/java/org/apache/naming/
H A DStringManager.java116 * @param key
119 public String getString(String key) { argument
120 if (key == null) {
121 String msg = "key is null";
129 str = bundle.getString(key);
131 str = "Cannot find message associated with key '" + key + "'";
141 * @param key
145 public String getString(String key, Object[] args) { argument
147 String value = getString(key);
184 getString(String key, Object arg) argument
199 getString(String key, Object arg1, Object arg2) argument
215 getString(String key, Object arg1, Object arg2, Object arg3) argument
233 getString(String key, Object arg1, Object arg2, Object arg3, Object arg4) argument
[all...]
/glassfish-3.1.2/admin/jmx-remote/common/src/main/java/com/sun/enterprise/admin/jmx/remote/
H A DIStringManager.java51 * @param key the key to the local format string
54 public String getString(String key); argument
59 * @param key the key to the local format string
63 public String getString(String key, Object arg); argument
69 * @param key the key to the local format string
74 public String getString(String key, Object[] args); argument
/glassfish-3.1.2/admin/rest/src/main/java/org/glassfish/admin/rest/utils/xml/
H A DXmlMap.java76 public XmlMap put (String key, Object value) { argument
77 map.put(key, value);
87 String key = entry.getKey();
92 entryElement.setAttribute("key", key);
/glassfish-3.1.2/common/amx-core/src/main/java/org/glassfish/admin/amx/base/
H A DSystemInfo.java87 of a key, which may be any of:
97 @param key the feature name to query
99 public boolean supportsFeature(String key); argument
/glassfish-3.1.2/common/amx-core/src/main/java/org/glassfish/admin/amx/logging/
H A DLogFileAccess.java102 The only legal key supported is {@link #SERVER_KEY}.
104 @param key a key specifying the type of log file
108 public String[] getLogFileNames( @Param(name="key") final String key );
114 The only legal key supported is {@link #SERVER_KEY}.
116 @param key a legal key designating a log file
124 @Param(name="key") final String key,
123 getLogFile( @aramname=�) final String key, @Param(name=�) final String fileName ) argument
[all...]
/glassfish-3.1.2/common/common-util/src/main/java/com/sun/enterprise/universal/glassfish/
H A DGFSystem.java78 * @param key the name of the property
81 public final static String getProperty(String key) argument
83 return gfsi.get().getProperty(key);
88 * @param key the name of the property
91 public final static void setProperty(String key, String value) argument
93 gfsi.get().setProperty(key, value);
H A DGFSystemImpl.java66 * @param key the name of the property
69 public final String getProperty(String key) argument
71 return props.get(key);
76 * @param key the name of the property
79 public final void setProperty(String key, String value) argument
81 props.put(key, value);
/glassfish-3.1.2/ha/ha-shoal-store/src/main/java/org/shoal/ha/store/
H A DGlassFishKeyMapper.java65 public HACookieInfo makeCookie(String groupName, Object key, String oldReplicaCookie) { argument
68 if (key != null) {
69 cookieStr = super.getMappedInstance(groupName, key);// super.getReplicaChoices(groupName, key);
87 public String getReplicaChoices(String groupName, Object key) {
92 return super.getReplicaChoices(groupName, key);

Completed in 78 milliseconds

12345678