Author: simonetripodi
Date: Thu Jan 28 16:23:40 2010
New Revision: 904147
URL: http://svn.apache.org/viewvc?rev=904147&view=rev
Log:
first checkin of Service class
Added:
labs/amber/signature-api/src/main/java/org/apache/labs/amber/signature/descriptors/Service.java
(with props)
Added:
labs/amber/signature-api/src/main/java/org/apache/labs/amber/signature/descriptors/Service.java
URL:
http://svn.apache.org/viewvc/labs/amber/signature-api/src/main/java/org/apache/labs/amber/signature/descriptors/Service.java?rev=904147&view=auto
==============================================================================
---
labs/amber/signature-api/src/main/java/org/apache/labs/amber/signature/descriptors/Service.java
(added)
+++
labs/amber/signature-api/src/main/java/org/apache/labs/amber/signature/descriptors/Service.java
Thu Jan 28 16:23:40 2010
@@ -0,0 +1,81 @@
+/*
+ * 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.
+ */
+package org.apache.labs.amber.signature.descriptors;
+
+import java.net.URL;
+
+/**
+ * Basic representation of an OAuth service, defined by an URL and the relative
+ * HTTP Method the URL has to be invoked.
+ *
+ * @version $Id$
+ */
+public class Service {
+
+ /**
+ * The {...@link HTTPMethod} this service must be invoked with.
+ */
+ private final HTTPMethod httpMethod;
+
+ /**
+ * The service URL.
+ */
+ private final URL serviceUrl;
+
+ /**
+ * Builds a new service by the HTTP method and URI.
+ *
+ * @param httpMethod the {...@link HTTPMethod} this service must be
invoked with.
+ * @param serviceUrl the service URI.
+ */
+ public Service(HTTPMethod httpMethod, URL serviceUrl) {
+ this.httpMethod = httpMethod;
+ this.serviceUrl = serviceUrl;
+ }
+
+ /**
+ * Returns the {...@link HTTPMethod} this service must be invoked with.
+ *
+ * @return the {...@link HTTPMethod} this service must be invoked with.
+ */
+ public HTTPMethod getHttpMethod() {
+ return this.httpMethod;
+ }
+
+ /**
+ * Returns the service URI.
+ *
+ * @return the service URI.
+ */
+ public URL getServiceUri() {
+ return this.serviceUrl;
+ }
+
+ /**
+ * {...@inheritdoc}
+ */
+ @Override
+ public String toString() {
+ return new StringBuilder("Service { httpMethod=")
+ .append(httpMethod)
+ .append(", serviceUri=")
+ .append(serviceUrl)
+ .append(" }")
+ .toString();
+ }
+
+}
Propchange:
labs/amber/signature-api/src/main/java/org/apache/labs/amber/signature/descriptors/Service.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
labs/amber/signature-api/src/main/java/org/apache/labs/amber/signature/descriptors/Service.java
------------------------------------------------------------------------------
svn:keywords = Date Author Id Revision HeadURL
Propchange:
labs/amber/signature-api/src/main/java/org/apache/labs/amber/signature/descriptors/Service.java
------------------------------------------------------------------------------
svn:mime-type = text/plain
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]