01: /*
02: * SessionName.java
03: *
04: * Created on January 9, 2002, 10:46 AM
05: */
06:
07: package javax.sdp;
08:
09: /** A SessionName represents the s= fields contained within a SessionDescription.
10: *
11: * Please refer to IETF RFC 2327 for a description of SDP.
12: *
13: * @author deruelle
14: * @version 1.0
15: */
16: public interface SessionName extends Field {
17:
18: /** Returns the value.
19: * @throws SdpParseException
20: * @return the value
21: */
22: public String getValue() throws SdpParseException;
23:
24: /** Sets the value
25: * @param value the - new information.
26: * @throws SdpException if the value is null
27: */
28: public void setValue(String value) throws SdpException;
29:
30: }
|