io.pkts.packet.sip.address.impl.URIImpl Maven / Gradle / Ivy
/**
*
*/
package io.pkts.packet.sip.address.impl;
import io.pkts.buffer.Buffer;
import io.pkts.packet.sip.address.URI;
/**
* @author [email protected]
*/
public abstract class URIImpl implements URI {
private final Buffer scheme;
/**
*
*/
public URIImpl(final Buffer scheme) {
this.scheme = scheme;
}
/**
* {@inheritDoc}
*/
@Override
public Buffer getScheme() {
return this.scheme;
}
/**
* {@inheritDoc}
*/
@Override
public boolean isSipURI() {
return false;
}
@Override
public abstract URI clone();
}