Java tutorial
/* * ***** BEGIN LICENSE BLOCK ***** * Zimbra Collaboration Suite Server * Copyright (C) 2005, 2006, 2007, 2009, 2010, 2013, 2014, 2016 Synacor, Inc. * * This program is free software: you can redistribute it and/or modify it under * the terms of the GNU General Public License as published by the Free Software Foundation, * version 2 of the License. * * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * You should have received a copy of the GNU General Public License along with this program. * If not, see <https://www.gnu.org/licenses/>. * ***** END LICENSE BLOCK ***** */ /* * Created on 2005. 3. 7. * * TODO To change the template for this generated file go to * Window - Preferences - Java - Code Style - Code Templates */ package com.zimbra.cs.client.soap; import org.dom4j.DocumentHelper; import org.dom4j.Element; import com.zimbra.common.service.ServiceException; import com.zimbra.common.soap.MailConstants; import com.zimbra.common.soap.SoapParseException; /** * @author jhahm * * TODO To change the template for this generated type comment go to * Window - Preferences - Java - Code Style - Code Templates */ public class LmcNoOpRequest extends LmcSoapRequest { /* (non-Javadoc) * @see com.zimbra.cs.client.soap.LmcSoapRequest#getRequestXML() */ protected Element getRequestXML() throws LmcSoapClientException { Element request = DocumentHelper.createElement(MailConstants.NO_OP_REQUEST); return request; } /* (non-Javadoc) * @see com.zimbra.cs.client.soap.LmcSoapRequest#parseResponseXML(org.dom4j.Element) */ protected LmcSoapResponse parseResponseXML(Element responseXML) throws SoapParseException, ServiceException, LmcSoapClientException { LmcNoOpResponse response = new LmcNoOpResponse(); return response; } }