Searched defs:community (Results 1 - 7 of 7) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/IPAcl/
H A DJDMInformCommunity.java31 protected String community= ""; field in class:JDMInformCommunity
49 return community;
H A DJDMTrapCommunity.java32 protected String community= ""; field in class:JDMTrapCommunity
50 return community;
H A DAclImpl.java244 * @param community the community name associated with the principal.
251 public boolean checkPermission(Principal user, String community, argument
256 if (ent.checkPermission(perm) && ent.checkCommunity(community)) return true;
262 * Checks whether or not the specified community string is defined.
264 * @param community the community name associated with the principal.
266 * @return true if the specified community string is defined, false
271 public boolean checkCommunity(String community) { argument
274 if (ent.checkCommunity(community)) retur
[all...]
H A DSnmpAcl.java134 * Returns ann enumeration of community strings. Community strings are returned as String.
135 * @return The enumeration of community strings.
263 * Checks whether or not the specified host and community have <CODE>READ</CODE> access.
266 * @param community The community associated with the host.
268 * @return <CODE>true</CODE> if the pair (host, community) has read permission, <CODE>false</CODE> otherwise.
270 public boolean checkReadPermission(InetAddress address, String community) { argument
273 return acl.checkPermission(p, community, READ);
277 * Checks whether or not a community string is defined.
279 * @param community Th
283 checkCommunity(String community) argument
308 checkWritePermission(InetAddress address, String community) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/
H A DInetAddressAcl.java60 * Checks whether or not the specified host and community have <CODE>READ</CODE> access.
63 * @param community The community associated with the host.
65 * @return <CODE>true</CODE> if the pair (host, community) has read permission, <CODE>false</CODE> otherwise.
67 public boolean checkReadPermission(InetAddress address, String community); argument
70 * Checks whether or not a community string is defined.
72 * @param community The community to check.
74 * @return <CODE>true</CODE> if the community is known, <CODE>false</CODE> otherwise.
76 public boolean checkCommunity(String community); argument
95 checkWritePermission(InetAddress address, String community) argument
[all...]
H A DSnmpMessage.java51 * community OCTET STRING, -- community name
68 public byte[] community ; field in class:SnmpMessage
91 benc.putOctetString((community != null) ? community : new byte[0]) ;
154 community = bdec.fetchOctetString() ;
192 community = pdupacket.community ;
338 pdu.community = community ;
[all...]
/openjdk7/jdk/src/share/classes/sun/management/snmp/jvminstr/
H A DNotificationTargetImpl.java36 private String community; field in class:NotificationTargetImpl
40 * target synctax is <host>:<port>:community. Eg: "localhost:163:private".
52 String community)
54 this(InetAddress.getByName(address),port,community);
58 String community) {
61 this.community = community;
103 community = target.substring(index + 1, target.length());
116 return community;
129 " community
51 NotificationTargetImpl(String address, int port, String community) argument
57 NotificationTargetImpl(InetAddress address, int port, String community) argument
[all...]

Completed in 57 milliseconds