blob: 05a31416966d24b94575dfac60a658908cc8a8a5 [file] [log] [blame]
/**
*
* Copyright 2005-2006 The Apache Software Foundation or its licensors, as applicable.
*
* Licensed 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.xbean.spring.example;
/**
* Gin is made from the distillation of white grain spirit and juniper berries.
* @org.apache.xbean.XBean element="gin" contentProperty="name"
*
* @version $Revision: 1.1 $
*/
public class GinService {
private String name;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
}