/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License (the "License").
* You may not use this file except in compliance with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
* Copyright (c) 1999 by Sun Microsystems, Inc.
* All rights reserved.
*
*/
// SSrvDereg.java: Message class for SLP service deregistration request.
// Author: James Kempf
// Created On: Thu Oct 9 15:00:38 1997
// Last Modified By: James Kempf
// Last Modified On: Tue Oct 27 10:57:39 1998
// Update Count: 102
//
/**
* The SSrvDereg class models the server side SLP service deregistration. The
* default class does SLPv2 deregs, but subclasses can do other versions
* by redefining the initialize() and makeReply() messages.
*
* @author James Kempf
*/
// Construct a SSrvDereg from the input stream.
throws ServiceLocationException, IOException {
this.initialize(dis);
}
// Initialize the object.
throws ServiceLocationException, IOException {
// Parse in scopes.
// Parse in the service URL.
URL =
ht,
// Get the tag lists.
// If no tags, then set the tags vector to null. This indicates
// that the service: URL needs to be deregistered.
} else {
// Unescape the tags.
}
// Construct description.
" URL signature=" +
}
// Return a SrvAck. We ignore the existing flag, since in V2, fresh comes
// in. In this case, all we need to do is clone the header.
// Construct description.
return hdr;
}
}