API Overview API Index Package Overview Direct link to this page
JDK 1.6
  org.omg.CORBA. Principal View Javadoc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40

/*
 * @(#)Principal.java	1.20 05/11/17
 *
 * Copyright 2006 Sun Microsystems, Inc. All rights reserved.
 * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
 */

package org.omg.CORBA;


/**
 * A class that contains information about the identity of
 * the client, for access control
 * and other purposes. It contains a single attribute, the name of the
 * <code>Principal</code>, encoded as a sequence of bytes.
 * <P>
 * @deprecated Deprecated by CORBA 2.2.
 */
@Deprecated
public class Principal {
    /**
     * Sets the name of this <code>Principal</code> object to the given value.
     * @param value the value to be set in the <code>Principal</code>
     * @deprecated Deprecated by CORBA 2.2.
     */
@Deprecated
    public void name(byte[] value) {
	throw new org.omg.CORBA.NO_IMPLEMENT() ;
    }

    /**
     * Gets the name of this <code>Principal</code> object.
     * @return the name of this <code>Principal</code> object
     * @deprecated Deprecated by CORBA 2.2.
     */
@Deprecated
    public byte[] name() {
	throw new org.omg.CORBA.NO_IMPLEMENT() ;
    }
}

Generated By: JavaOnTracks Doclet 0.1.4     ©Thibaut Colar