Uses of Interface
net.jini.core.constraint.InvocationConstraint
Packages that use InvocationConstraint
-
Uses of InvocationConstraint in com.sun.jini.discovery
Classes in com.sun.jini.discovery that implement InvocationConstraintModifier and TypeClassDescriptionfinal classRepresents a constraint on the version of the discovery protocol used to contact lookup services.final classRepresents a constraint on the size (in bytes) of multicast packets used in the multicast request and multicast announcement discovery protocols.final classRepresents a constraint on the time to live (TTL) value set on outgoing multicast request and multicast announcement packets.final classRepresents a constraint on the timeout set on sockets used for unicast discovery. -
Uses of InvocationConstraint in net.jini.core.constraint
Subinterfaces of InvocationConstraint in net.jini.core.constraintModifier and TypeInterfaceDescriptioninterfaceImplemented by constraints that are expressed in terms of relative time, to support conversion to absolute time constraints.Classes in net.jini.core.constraint that implement InvocationConstraintModifier and TypeClassDescriptionfinal classRepresents a constraint on authentication of the client to the server.final classRepresents a constraint on the client, such that if the client authenticates itself, then it may only authenticate itself as one or more of the specified principals.final classRepresents a constraint on the client, such that if the client authenticates itself, then it may only authenticate itself as principals that are instances of one or more of the specified classes.final classRepresents a constraint on the client, such that if the client authenticates itself, then it must authenticate itself as at least all of the specified principals.final classRepresents a constraint on the client, such that if the client authenticates itself, then it must authenticate itself such that, for each specified class, at least one authenticated principal is an instance of that class.final classRepresents a constraint on the confidentiality of message contents.final classRepresents a constraint on the absolute time by which a network connection must be established.final classRepresents a constraint on the maximum amount of time to wait for a network connection to be established.final classCombines two or more constraint alternatives into a single overall constraint.final classRepresents a constraint on delegation from the client to the server.final classRepresents a constraint on delegation, such that if delegation is permitted, it be permitted only for a range of absolute times.final classRepresents a constraint on delegation, such that if delegation is permitted, it be permitted only for a range of time measured relative to the start of the remote call.final classRepresents a constraint on the integrity of message contents, covering not only data transmitted in band as part of the remote call itself, but also out-of-band downloaded code.final classRepresents a constraint on authentication of the server to the client.final classRepresents a constraint on the server, such that if the server authenticates itself, then it must authenticate itself as at least all of the specified principals.Methods in net.jini.core.constraint that return InvocationConstraintModifier and TypeMethodDescriptionstatic InvocationConstraintConstraintAlternatives.create(Collection c) Returns a constraint representing the specified alternative constraints, with duplicate constraints removed.static InvocationConstraintConstraintAlternatives.create(InvocationConstraint[] constraints) Returns a constraint representing the specified alternative constraints, with duplicate constraints removed.ConnectionRelativeTime.makeAbsolute(long baseTime) Returns aConnectionAbsoluteTimeinstance with time obtained by adding the specified base time argument to the duration value from this instance.ConstraintAlternatives.makeAbsolute(long baseTime) Returns a constraint equal to the result of taking the constraints in this instance, replacing each constraint that is an instance ofRelativeTimeConstraintwith the result of invoking that constraint'smakeAbsolutemethod with the specified base time, and invoking thecreatemethod of this class with the revised collection of constraints.DelegationRelativeTime.makeAbsolute(long baseTime) Returns aDelegationAbsoluteTimeinstance with times obtained by adding the specified base time argument to the duration values from this instance.RelativeTimeConstraint.makeAbsolute(long baseTime) Converts this constraint to absolute time.Methods in net.jini.core.constraint with parameters of type InvocationConstraintModifier and TypeMethodDescriptionstatic InvocationConstraintConstraintAlternatives.create(InvocationConstraint[] constraints) Returns a constraint representing the specified alternative constraints, with duplicate constraints removed.Constructors in net.jini.core.constraint with parameters of type InvocationConstraintModifierConstructorDescriptionConstraintAlternatives(InvocationConstraint[] constraints) Creates an instance containing the specified alternative constraints, with duplicate constraints removed.InvocationConstraints(InvocationConstraint[] reqs, InvocationConstraint[] prefs) Creates an instance that has all of the constraints from the first array,reqs, added as requirements if the array is a non-nullvalue, and has all of the constraints from the second array,prefs, added as preferences if the array is a non-nullvalue.Creates an instance that has the first constraint,req, added as a requirement if it is a non-nullvalue, and has the second constraint,pref, added as a preference if it is a non-nullvalue and is not a duplicate of the requirement.