Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* JBoss, Home of Professional Open Source
* Copyright XXXX, Red Hat Middleware LLC, and individual contributors as indicated
* by the @authors tag. All rights reserved.
* See the copyright.txt in the distribution for a full listing
* of individual contributors.
* This copyrighted material is made available to anyone wishing to use,
* modify, copy, or redistribute it subject to the terms and conditions
* of the GNU General Public License, v. 2.0.
* This program is distributed in the hope that it will be useful, but WITHOUT A
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
* PARTICULAR PURPOSE. See the GNU General Public License for more details.
* You should have received a copy of the GNU General Public License,
* v. 2.0 along with this distribution; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
* MA 02110-1301, USA.
*/
/*
* 15/07/13 - Change notice:
* This file has been modified by Mobius Software Ltd.
* For more information please visit http://www.mobius.ua
*/
package ua.mobius.mscontrol.sdp;
/**
*
* @author kulikov
*/
public class Origin {
private String name;
private String sessionID;
private String sessionVersion;
private String networkType;
private String addressType;
private String address;
public Origin(String o) {
int pos1 = o.indexOf(61);
int pos2 = o.indexOf(32, pos1);
name = o.substring(pos1 + 1, pos2);
pos1 = o.indexOf(32, pos2 + 1);
sessionID = o.substring(pos2 + 1, pos1);
pos2 = o.indexOf(32, pos1 + 1);
sessionVersion = o.substring(pos1 + 1, pos2);
pos1 = o.indexOf(32, pos2 + 1);
networkType = o.substring(pos2 + 1, pos1);
pos2 = o.indexOf(32, pos1 + 1);
addressType = o.substring(pos1 + 1, pos2);
address = o.substring(pos2 + 1, o.length());
}
public Origin(String name, String sessionID, String sessionVersion, String networkType, String addressType, String address) {
this.name = name;
this.sessionID = sessionID;
this.sessionVersion = sessionVersion;
this.networkType = networkType;
this.addressType = addressType;
this.address = address;
}
public String getAddress() {
return address;
}
public String getAddressType() {
return addressType;
}
public String getName() {
return name;
}
public String getNetworkType() {
return networkType;
}
public String getSessionID() {
return sessionID;
}
public String getSessionVersion() {
return sessionVersion;
}
public void setAddress(String address) {
this.address = address;
}
public void setAddressType(String addressType) {
this.addressType = addressType;
}
public void setName(String name) {
this.name = name;
}
public void setNetworkType(String networkType) {
this.networkType = networkType;
}
public void setSessionID(String sessionID) {
this.sessionID = sessionID;
}
public void setSessionVersion(String sessionVersion) {
this.sessionVersion = sessionVersion;
}
@Override
public String toString() {
return "o=" + name + " " + sessionID + " " + sessionVersion + " " +
networkType + " " + addressType + " " + address;
}
}