Subversion Repository Public Repository

playgrnd

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/*
 * SampleService.java Jan 20, 2012
 *
 * Copyright 2010 Uralian, LLC. All rights reserved.
 */
package com.uralian.sample;

import java.io.Serializable;
import java.util.Date;

/**
 * @author Vlad Orzhekhovskiy
 */
public interface SampleService extends Serializable
{
  public Date currentTime();
  
  public String reverse(String s);
  
  public double sine(double x);
  
  public long multiple(int a, int b);
}

Commits for playgrnd/jsf-sample/src/main/java/com/uralian/sample/SampleService.java

Diff revisions: vs.
Revision Author Commited Message
35 snark picture snark Thu 17 Aug, 2017 23:28:40 +0000

add jsf-sample project