Author: olamy
Date: Fri Dec 9 23:33:29 2011
New Revision: 1212687
URL: http://svn.apache.org/viewvc?rev=1212687&view=rev
Log:
gloups miss adding a file
Added:
tomcat/maven-plugin/trunk/common-tomcat-maven-plugin/src/main/java/org/apache/tomcat/maven/common/deployer/TomcatManagerResponse.java
(with props)
Added:
tomcat/maven-plugin/trunk/common-tomcat-maven-plugin/src/main/java/org/apache/tomcat/maven/common/deployer/TomcatManagerResponse.java
URL:
http://svn.apache.org/viewvc/tomcat/maven-plugin/trunk/common-tomcat-maven-plugin/src/main/java/org/apache/tomcat/maven/common/deployer/TomcatManagerResponse.java?rev=1212687&view=auto
==============================================================================
---
tomcat/maven-plugin/trunk/common-tomcat-maven-plugin/src/main/java/org/apache/tomcat/maven/common/deployer/TomcatManagerResponse.java
(added)
+++
tomcat/maven-plugin/trunk/common-tomcat-maven-plugin/src/main/java/org/apache/tomcat/maven/common/deployer/TomcatManagerResponse.java
Fri Dec 9 23:33:29 2011
@@ -0,0 +1,70 @@
+package org.apache.tomcat.maven.common.deployer;
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+/**
+ * @author Olivier Lamy
+ * @since 2.0
+ */
+public class TomcatManagerResponse
+{
+ private int statusCode;
+
+ private String reasonPhrase;
+
+ private String httpResponseBody;
+
+ public TomcatManagerResponse()
+ {
+ // no op
+ }
+
+ public int getStatusCode()
+ {
+ return statusCode;
+ }
+
+ public TomcatManagerResponse setStatusCode( int statusCode )
+ {
+ this.statusCode = statusCode;
+ return this;
+ }
+
+ public String getReasonPhrase()
+ {
+ return reasonPhrase;
+ }
+
+ public TomcatManagerResponse setReasonPhrase( String reasonPhrase )
+ {
+ this.reasonPhrase = reasonPhrase;
+ return this;
+ }
+
+ public String getHttpResponseBody()
+ {
+ return httpResponseBody;
+ }
+
+ public TomcatManagerResponse setHttpResponseBody( String httpResponseBody )
+ {
+ this.httpResponseBody = httpResponseBody;
+ return this;
+ }
+}
Propchange:
tomcat/maven-plugin/trunk/common-tomcat-maven-plugin/src/main/java/org/apache/tomcat/maven/common/deployer/TomcatManagerResponse.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
tomcat/maven-plugin/trunk/common-tomcat-maven-plugin/src/main/java/org/apache/tomcat/maven/common/deployer/TomcatManagerResponse.java
------------------------------------------------------------------------------
svn:keywords = Author Date Id Revision
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]