- java.lang.Object
-
- org.omg.CORBA.PrincipalHolder
-
- All Implemented Interfaces:
Streamable
@Deprecated public final class PrincipalHolder extends Object implements Streamable
Deprecated.Deprecated by CORBA 2.2.The Holder forPrincipal. For more information on Holder files, see "Generated Files: Holder Files".A container class for values of type
Principalthat is used to store "out" and "inout" parameters in IDL methods. If an IDL method signature has an IDLPrincipalas an "out" or "inout" parameter, the programmer must pass an instance ofPrincipalHolderas the corresponding parameter in the method invocation; for "inout" parameters, the programmer must also fill the "in" value to be sent to the server. Before the method invocation returns, the ORB will fill in the value corresponding to the "out" value returned from the server.If
myPrincipalHolderis an instance ofPrincipalHolder, the value stored in itsvaluefield can be accessed withmyPrincipalHolder.value.- Since:
- JDK1.2
-
-
Constructor Summary
Constructors Constructor Description PrincipalHolder()Deprecated.Constructs a newPrincipalHolderobject with itsvaluefield initialized tonull.PrincipalHolder(Principal initial)Deprecated.Constructs a newPrincipalHolderobject with itsvaluefield initialized to the givenPrincipalobject.
-
-
-
Field Detail
-
value
public Principal value
Deprecated.ThePrincipalvalue held by thisPrincipalHolderobject.
-
-
Constructor Detail
-
PrincipalHolder
public PrincipalHolder()
Deprecated.Constructs a newPrincipalHolderobject with itsvaluefield initialized tonull.
-
PrincipalHolder
public PrincipalHolder(Principal initial)
Deprecated.Constructs a newPrincipalHolderobject with itsvaluefield initialized to the givenPrincipalobject.- Parameters:
initial- thePrincipalwith which to initialize thevaluefield of the newly-createdPrincipalHolderobject
-
-