From 4022d07a74d71f9bc50bda903410e623a77562e9 Mon Sep 17 00:00:00 2001 From: lresende Date: Tue, 1 Dec 2009 22:36:23 +0000 Subject: Removing expertise sample application git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@885979 13f79535-47bb-0310-9956-ffa450edef68 --- .../src/org/apache/tuscany/expertise/Expert.java | 64 ---------------------- 1 file changed, 64 deletions(-) delete mode 100644 sandbox/sca-cloud-tutorial/expertise-rest-appengine-webapp/src/org/apache/tuscany/expertise/Expert.java (limited to 'sandbox/sca-cloud-tutorial/expertise-rest-appengine-webapp/src/org/apache/tuscany/expertise/Expert.java') diff --git a/sandbox/sca-cloud-tutorial/expertise-rest-appengine-webapp/src/org/apache/tuscany/expertise/Expert.java b/sandbox/sca-cloud-tutorial/expertise-rest-appengine-webapp/src/org/apache/tuscany/expertise/Expert.java deleted file mode 100644 index 61ac1c12b7..0000000000 --- a/sandbox/sca-cloud-tutorial/expertise-rest-appengine-webapp/src/org/apache/tuscany/expertise/Expert.java +++ /dev/null @@ -1,64 +0,0 @@ -/* - * 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.tuscany.expertise; - -import java.io.Serializable; -import java.util.ArrayList; -import java.util.List; - -public class Expert implements Serializable { - private static final long serialVersionUID = 2026687637313310397L; - - private String id; - private String name; - private String location; - private List expertises = new ArrayList(); - - public Expert() { - - } - - public String getId() { - return id; - } - - public void setId(String id) { - this.id = id; - } - - public String getName() { - return name; - } - - public void setName(String name) { - this.name = name; - } - - public String getLocation() { - return location; - } - - public void setLocation(String location) { - this.location = location; - } - - public List getExpertise() { - return this.expertises; - } -} -- cgit v1.2.3