01: /*
02: * KeyIdentifier.java
03: *
04: * Created on August 7, 2006, 12:23 PM
05: *
06: * The contents of this file are subject to the terms
07: * of the Common Development and Distribution License
08: * (the License). You may not use this file except in
09: * compliance with the License.
10: *
11: * You can obtain a copy of the license at
12: * https://glassfish.dev.java.net/public/CDDLv1.0.html.
13: * See the License for the specific language governing
14: * permissions and limitations under the License.
15: *
16: * When distributing Covered Code, include this CDDL
17: * Header Notice in each file and include the License file
18: * at https://glassfish.dev.java.net/public/CDDLv1.0.html.
19: * If applicable, add the following below the CDDL Header,
20: * with the fields enclosed by brackets [] replaced by
21: * you own identifying information:
22: * "Portions Copyrighted [year] [name of copyright owner]"
23: *
24: * Copyright 2006 Sun Microsystems Inc. All Rights Reserved
25: */
26:
27: package com.sun.xml.ws.security.opt.api.reference;
28:
29: /**
30: * Interface for KeyIdentifier reference type inside a STR
31: * @author Ashutosh.Shahi@sun.com
32: */
33: public interface KeyIdentifier extends Reference {
34:
35: /**
36: *
37: * @return the valueType attribute for KeyIdentifier
38: */
39: String getValueType();
40:
41: /**
42: *
43: * @param valueType the valueType attribute for KeyIdentifier
44: */
45: void setValueType(final String valueType);
46:
47: /**
48: *
49: * @return the encodingType attribute
50: */
51: String getEncodingType();
52:
53: /**
54: *
55: * @param value the encodingType attribute
56: */
57: void setEncodingType(final String value);
58:
59: /**
60: *
61: * @return the referenced value by this key identifier
62: */
63: String getReferenceValue();
64:
65: /**
66: *
67: * @param referenceValue the referenced value by this keyIdentifier
68: */
69: void setReferenceValue(final String referenceValue);
70:
71: }
|