You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
jitsi/src/net/java/sip/communicator/service/resources/ImageID.java

26 lines
459 B

/*
* SIP Communicator, the OpenSource Java VoIP and Instant Messaging client.
*
* Distributable under LGPL license.
* See terms of license at gnu.org.
*/
package net.java.sip.communicator.service.resources;
/**
* Represents the Image Identifier.
*/
public class ImageID
{
private final String id;
public ImageID(String id)
{
this.id = id;
}
public String getId()
{
return id;
}
}