View Javadoc
1   /*
2    * Copyright (C) 2007-2012 Argeo GmbH
3    *
4    * Licensed under the Apache License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    *
8    *         http://www.apache.org/licenses/LICENSE-2.0
9    *
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
15   */
16  package org.argeo.slc;
17  
18  import java.io.Serializable;
19  
20  /** @deprecated use {@link DefaultNameVersion} instead. */
21  @Deprecated
22  public class BasicNameVersion extends DefaultNameVersion implements
23  		Serializable {
24  	private static final long serialVersionUID = -5127304279136195127L;
25  
26  	public BasicNameVersion() {
27  	}
28  
29  	/** Interprets string in OSGi-like format my.module.name;version=0.0.0 */
30  	public BasicNameVersion(String nameVersion) {
31  		int index = nameVersion.indexOf(";version=");
32  		if (index < 0) {
33  			setName(nameVersion);
34  			setVersion(null);
35  		} else {
36  			setName(nameVersion.substring(0, index));
37  			setVersion(nameVersion.substring(index + ";version=".length()));
38  		}
39  	}
40  
41  	public BasicNameVersion(String name, String version) {
42  		super(name, version);
43  	}
44  
45  	public BasicNameVersion(NameVersion nameVersion) {
46  		super(nameVersion);
47  	}
48  }